Hello, I would like to add the ratings (stars) to my post meta data (a position outside 'the_content').
Can I add php code straight into the theme template and "hide" the star ratings in 'the_content' on the single post page?
Thanks,
Taira
Hello, I would like to add the ratings (stars) to my post meta data (a position outside 'the_content').
Can I add php code straight into the theme template and "hide" the star ratings in 'the_content' on the single post page?
Thanks,
Taira
Did you find a solution or tutorial?
Sorry for the late response. YES YOU CAN ADD RATINGS RIGHT INTO YOUR TEMPLATE! Add the following code right at the template:
<?php
global $rwp, $post;
$rwp->EmbedRating(($post->ID + 1) . '0', $post->post_title, get_permalink($post->ID), $this->post_class, false);
?>
Please let me know if it was helpful.
@tairak, @dooramooz - I'm closing this ticket. If it didn't help, please re-open it with your comments.
A small fix to the code:
<?php
global $rwp, $post;
$rwp->EmbedRating(($post->ID + 1) . '0', $post->post_title, get_permalink($post->ID), 'blog-post', false);
?>You must log in to post.