Is there away to allow ratings for the blog section as well so people can rate the blog posts?
Thanks
Is there away to allow ratings for the blog section as well so people can rate the blog posts?
Thanks
Hey,
at the moment blog entries don't allow ratings but you can modify the code a bit. Open template_blog.php and replace following code:
<?php the_content(__('Read more »','expose')); ?>
with:
<?php the_content(__('Read more »','expose'));
if(function_exists('the_ratings')) the_ratings(); ?>You must log in to post.