I have simple query that grabs the highest rated posts and displays them on the page. Does anyone know how to display the rating images(in my case its stars) with a custom query. Thanks for you help
<?php query_posts
( array(
'sortby'=> highest_rated,
'orderby'=> desc,
'posts_per_page' => 20,
'paged' => ( get_query_var('paged') ? get_query_var('paged')),
));
?>