Hi there
I have a few hundred posts on my site for which I have activated the articles star ratings. The stars are showing up for each post but it seems to be displaying random star ratings for each post. I.e. each post is displaying incorrect star ratings, like the plugin is not assigning the correct star rating for each post.
Here's an example of a post, if you refresh a few times you'll get different star ratings each time:
http://www.ratethishunk.com/hunk-122/ semi NSFV (if you're a guy, I apologize for making you look at that :))
According to the plugin's statistics, this post has not been rated at all, but it's still showing star ratings.
Any idea what's going on here?
Here's the plugin settings under Article: http://i53.tinypic.com/igmas1.png
Here's the single.php code in which the star ratings is appearing:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="full" align="center">
<br />
<?php $posts = get_posts('orderby=rand&numberposts=1'); foreach($posts as $post) { ?>
<a href="<?php the_permalink(); ?>#hunk" id="hunk" class="button" title="<?php the_title(); ?>">generate a random hunk</a>
<?php } ?>
<br /><br />
<div class="padding" align="center">
<div align="center">
<?php the_content() ?>
</div>
</div>
</div>
<?php endwhile; ?>