wiki:wp-postratings/install

WP-PostRatings? Installation Instructions

Open wp-content/plugins folder

Put:

  1. Folder: postratings


Activate WP-PostRatings? plugin



Open wp-content/themes/<YOUR THEME NAME>/index.php

Find:

<?php while (have_posts()) : the_post(); ?>

Add Anywhere Below It:

<?php if(function_exists('the_ratings')) { the_ratings(); } ?>

Note:

  • This will display the ratings of the post and the voting image if user has not voted yet.
  • To embed the ratings into your post, use [ratings].



Back To WP-PostRatings Documentation