help me remove this additional parameter in url

The issue is caused by woocommerce. Woocommerce has a setting called Geolocate (with page caching support) which adds this parameter to every your url. The said option can be found in your dashboard at: Woocommerce → Settings → General → Default Customer Location Selecting any option apart from Geolocate (with page caching support) should resolve … Read more

problem in query_vars parameters

As best as I can understand, you are looking to echo out the value of a query variable. The WordPress function for getting a query variable is get_query_var(). So in your videolar.php template you would add: echo get_query_var(‘tur’);

Adding Parameters to get_comment

My point is: show posts last commenter name and comment date d F H:i together. Any suggestions? I think what you want is: $defaults = array( ‘post_id’ => $post->ID, ‘number’ => ‘1’, ‘orderby’ => ‘comment_date_gmt ‘, // default value; not really necessary ‘order’ => ‘DESC’, ‘status’ => ‘approved’, ); You shouldn’t need to run get_comments() … Read more