Hello there,
i'm using the "wp-postratings" plugin .. and i'm trying to add the ( Highest Rated ) in my index.php file
can anyone give me the code ?
i was thinking it would be something about ( wp_query )...
thank you !
Hello there,
i'm using the "wp-postratings" plugin .. and i'm trying to add the ( Highest Rated ) in my index.php file
can anyone give me the code ?
i was thinking it would be something about ( wp_query )...
thank you !
Up Please !!
Try the FAQ, it explains how to display highest rated post(s) using get_highest_rated()
@chadrew, Thank you very much .. i found what i'm looking for :
<?php if (function_exists('get_highest_rated')): ?>
<?php query_posts($query_string.'&r_sortby=highest_rated&r_orderby=desc&post_per_page=5') ?>
<?php while(have_posts()) : the_post(); ?>
<?php endwhile; ?>
<?php endif; ?>Hi, did u somehow managed thumbnails?
You must log in to post.