• Hi,

    In the Category or Archive page, is there a way to order the list of post based on ranking?

    I am making a site for top shoe store in our country. The categories were assigned per City. So I want the Category output to show the “Top Shoe Store in City” showing the list of posts ordered from highest to lowest.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor dudo

    (@dudo)

    I guess you need to order the stores ordered by yasr_overall_rating, am I right?

    If so, add this to your wp_Query:

    
    'orderby'    => 'meta_value_num',
    'meta_key'   => 'yasr_overall_rating',
    

    Let me know!

    Best,
    Dario

    Thread Starter bodabas

    (@bodabas)

    Hi Dario,

    Thanks for the quick reply

    Yes, that’s basically what I want to show in the Category page.

    Category: WordPress City

    AA Shoe Store (5 ratings)
    FF Shoe Store (4 ratings)
    BB Shoe Store (3 ratings)
    etc…

    I am not a coder. I believed that I have to call the WP-query inside the category.php. I just haven’t find the right argument to output the correct data. =)

    Cheers

    Plugin Contributor dudo

    (@dudo)

    Yeah, if you’ve the category.php file, at the top of this, you’ve to insert something like this

    $wp_query = new WP_Query(array(
            'post_type'           => array('post'),
            'orderby'             => 'meta_value_num',
            'meta_key'            => 'yasr_overall_rating',
            'order'               => 'DESC',
            'post_status'         => 'publish',
    ));

    Feel free to contact me through YASR website leaving a comment in any page.

    Best,
    Dario

    Thread Starter bodabas

    (@bodabas)

    Hi,

    Thanks, been working on the site and I think its better to populate the contents first. I’m currently experimenting with just 3 posts. Need to add more to see the actual result. I’ll let you know via YASR website.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Order the List of Posts from Highest to Lowest Rating’ is closed to new replies.