» Index
Plugin Information
Author
» Lester 'GaMerZ' Chan
EMail:
»
Website:
» http://www.lesterchan.net/
Demo:
» http://www.lesterchan.net/blogs
Documentation:
» http://dev.wp-plugins.org/wiki/wp-postratings
Development:
» http://dev.wp-plugins.org/browser/wp-postratings/
Support Forums:
» http://forums.lesterchan.net/viewforum.php?f=24
Updated:
» 1st July 2006
Changelog
-
Version 1.03 (01-07-2006)
- NEW: Total Rating Votes Stats And Total Rating Users Stats Function Added
- FIXED: Ratings Not Working On Physical Pages That Is Integrated Into WordPress
- FIXED: Modified Get Most/Highest Rated Post Function
- FIXED: Search Bots Unable To Index Site
-
Version 1.02a (07-06-2006)
- FIXED: AJAX Not Working In Opera Browser
-
Version 1.02 (01-06-2006)
- NEW: Fading In/Put Effect After You Rate A Post
- NEW: Rating Voting And Rating Results Are On The Same Image
- NEW: Added Rating Option For Logging Method
- NEW: Added Rating Option For Who Can Rate
- NEW: Added Rating Results Image To Get Highest Rated Stats
- NEW: Rating Administration Panel And The Code That WP-PostRatings Generated Is XHTML 1.0 Transitional
-
Version 1.01 (01-04-2006)
- NEW: AJAX Voting
- FIXED: Block Search Bots From Voting
- FIXED: Hard Coded Table Name In Ratings Stats
-
Version 1.00 (01-03-2006)
» Installation Instructions
-
Open wp-content/plugins Folder
-
Put:
Folder: postratings
-
Activate WP-PostRatings Plugin
-
Refer To Usage For Further Instructions
» Upgrade Instructions
From v1.0x To v1.03
-
Deactivate WP-PostRatings Plugin
-
Open wp-content/plugins Folder
-
Overwrite:
Folder: postratings
-
Activate WP-PostRatings Plugin
-
Go to 'WP-Admin -> Ratings -> Ratings Options' and restore all the template variables to Default
» Usage Instructions
General Usage
-
Open wp-content/themes/<YOUR THEME NAME>/index.php
You may place it in single.php, post.php or page.php also.
-
Find:
<?php while (have_posts()) : the_post(); ?>
-
Add Anywhere Below It:
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
If you DO NOT want the ratings to appear in every post, DO NOT use the code above. Just type in [ratings] into the selected post content and it will embed ratings into that post only.
-
Note: In IE, some of the poll's text may appear jagged (this is normal in IE). To solve this issue,
-
Open poll-css.css
-
Find:
/* background-color: #ffffff; */
-
Replace:
background-color: #ffffff;
Where #ffffff should be your background color for the poll.
Ratings Stats (Outside WP Loop)
-
To Display Highest Rated Post
-
Use:
<?php if (function_exists('get_highest_rated')): ?>
<?php get_highest_rated(); ?>
<?php endif; ?>
-
To Display Most Rated Post
-
Use:
<?php if (function_exists('get_most_rated')): ?>
<?php get_most_rated(); ?>
<?php endif; ?>