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

    (@gamerz)

    Thread Starter advt12

    (@advt12)

    tnx but i’m so noob in wp ??
    can you help me please?!

    my theme has slider and i should choose a category for slider to show!
    the code:
    query_posts(“showposts=$featured_num&cat=”.get_catId($featured_cat));

    what can i do? i want to show 5 most rated posts in theme slider?

    Plugin Author Lester Chan

    (@gamerz)

    Change:
    query_posts("showposts=$featured_num&cat=".get_catId($featured_cat));

    To
    query_posts( array( 'showposts' => $featured_num, 'cat' => get_catId($featured_cat), 'meta_key' => 'ratings_users', 'orderby' => 'meta_value_num', 'order' => 'DESC' ) ); ?>

    Thread Starter advt12

    (@advt12)

    I put:
    query_posts( array( ‘showposts’ => $featured_num, ‘meta_key’ => ‘ratings_users’, ‘orderby’ => ‘meta_value_num’, ‘order’ => ‘DESC’ ) );

    It works fine ?? tnx a lot

    Thread Starter advt12

    (@advt12)

    excuse me, how can i get most rated posts by category with last query_posts?!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘how to get most rated post id’ is closed to new replies.