Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #5768
    jeasely
    Participant

    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/

    #5769
    Bartosz
    Keymaster

    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.

    #5772
    jeasely
    Participant

    Thank you for an exceptional product and an admirable technical support response time!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.