Rating: 5 stars
Pretty simple
]]>Rating: 5 stars
Very Very nice! Thanks.
]]>Rating: 1 star
Cheio de bugs.
]]>Rating: 5 stars
After researching for several days and trying different methods for adding a 5 star rating system to my custom comments this worked perfectly as expected. Thank you
]]>Rating: 5 stars
Good, does exactly what it is meant to do
]]>Rating: 5 stars
Simply uses the comment_karma field to link the rating to the post.
On a completely custom comment page simply use :
comment_form( );
Than parse all comments, e.g.:
$comments = get_comments( );
foreach ($comments as $key => $comment) {
echo $comment->comment_author . ”;
echo $comment->comment_karma . ”;
echo $comment->comment_content . ”;
}
Perfection!
]]>