This allows you to rate a post from within the Admin/Write/Post screen and displays stars 0 – 5.
http://design.sneak.co.nz/plugins/ds-rating/
You can pop the function code into any template you like.
Can you use this plugin for certain pages only/
http://www.lesterchan.net/portfolio/programming.php lets you choose pages or posts .. wherever you put the code it displays
you can put it at single.php or page.php or both.. but I am not sure about certain pages only.
Yes – Pages are generated via template. If you have two pages using the one template, you can change the output to read
Ratings: None
There were articles in my posts that I didn’t want to rate, so I asked the author what to insert to bring up a NULL value. He was fast and his answer worked.
<?php if (function_exists('has_rating')){
if(has_rating()){ get_rating();}
else {
echo
"<span class='none'>None</span>"; } }?>
Katgirl
So should I use the program that estjohn is using?
http://www.lesterchan.net/portfolio/programming.php – lots of good plugins and I am using his rating script on my site, works a treat!