[Plugin: WP-PostRatings] Locked ratings in loop widget
-
Hellow
Im using simple loop for displaying thumbs, title and stars in sidebar(“top 5”).
My code:
‘<?php $my_query2 = new WP_Query(‘r_sortby=highest_rated&r_orderby=DESC&showposts=5&cat=4,5,6,7’);
while ($my_query2->have_posts()) : $my_query2->the_post(); $do_not_duplicate = $post->ID; ?>
<div id=”top5″>
” title=”<?php the_title_attribute(); ?>” ><?php echo get_the_post_thumbnail($post->ID, ‘top-post-image’); ?>
“><?php the_title(); ?>
<?php if(function_exists(‘the_ratings’)) { the_ratings(); } ?>
</div>
<?php endwhile; wp_reset_query(); ?>’I’d like to display (locked) image of ratings and not normal (live) ratings.
Thanks for any help 😉
The topic ‘[Plugin: WP-PostRatings] Locked ratings in loop widget’ is closed to new replies.