I’m attempting to query post:
<?php query_posts(array(‘post_type’ => ‘videos’, ‘meta_key’ => ‘post_views_count’, ‘orderby’ => ‘meta_value’,’order’ => ‘DESC’,’showposts’ => 4)); ?> <?php while (have_posts()) : the_post(); ?>
This is not working. Please advise.
https://wordpress.org/plugins/post-views-counter/
You just need to add:
'orderby' => 'post_views';
to any WP query. You can use any other WP_Query parameters as you’d normally do and no meta_key or orderby meta_value is required.
Thank you for an exceptional product and an admirable technical support response time!
After you register and login to the site, you may post all plugin support questions in the Support Forum.
If you need to provide private info, please create a ticket and then reply to it using Set as private reply option.