Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Lester Chan

    (@gamerz)

    I am not too sure whether using WP query_post works, but you can get it a try

    <?php query_posts( array( 'meta_key' => 'ratings_users', 'orderby' => 'meta_value_num', 'order' => 'DESC' ) ); ?>

    Thread Starter savvar

    (@savvar)

    I got <?php query_posts($query_string.’&r_sortby=most_rated&r_orderby=desc’) ? from plugin FAQ and it works perfectly but it displays only already voted posts

    Thread Starter savvar

    (@savvar)

    Also can i ask if i can put numbers in front of every post in category page?

    1 for the first 2 second etc

    Would be really pleased if you tell me how i can do it

    Plugin Author Lester Chan

    (@gamerz)

    Sorry, don’t understand your last question

    Thread Starter savvar

    (@savvar)

    I used <?php query_posts($query_string.'&r_sortby=most_rated&r_orderby=desc') ?> to change archive.php to sort posts according to ratings.

    Is there a way to put a number on every post on archive page???

    1.post1
    2.post2
    3.post3

    etc

    Thread Starter savvar

    (@savvar)

    Forget my last request was stupid

    i use <?php query_posts( ‘r_sortby=highest_rated&r_orderby=desc&cat=1135’ ); ?> on arhive.php to get top rated posts but posts without ratings dont show

    what i have to put so those will also show?

    Plugin Author Lester Chan

    (@gamerz)

    Take a look at my last post in http://wordpress.org/support/topic/how-to-display-full-post-of-most-popular?replies=5

    So within the loop, just add a <?php the_ratings(); ?>

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Query Posts’ is closed to new replies.