WP-PostRatings – WordPress plugin Free download
WP-PostRatings
Description
Usage
Open wp-content/themes/<YOUR THEME NAME>/index.php
You may place it in archive.php, single.php, post.php or page.php also.
Find: <?php while (have_posts()) : the_post(); ?>
Add Anywhere Below It (The Place You Want The Ratings To Show): <?php if(function_exists('the_ratings')) { the_ratings(); } ?>
If you DO NOT want the ratings to appear in every post/page, DO NOT use the code above. Just type in [ratings]
into the selected post/page content and it will embed ratings into that post/page only.
If you want to embed other post ratings use [ratings id="1"]
, where 1 is the ID of the post/page ratings that you want to display.
If you want to embed other post ratings results, use [ratings id="1" results="true"]
, where 1 is the ID of the post/page ratings results that you want to display.
Build Status
Development
https://github.com/lesterchan/wp-postratings
Credits
Plugin icon by Freepik from Flaticon
Icons courtesy of FamFamFam and Everaldo
Donations
I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations.
Screenshots






FAQ
How To Change Schema Type?
<?php
add_filter( 'wp_postratings_schema_itemtype', 'wp_postratings_schema_itemtype' );
function wp_postratings_schema_itemtype( $itemtype ) {
return 'itemscope itemtype="http://schema.org/Recipe"';
}
?>
The default schema type is ‘Article’, if you want to change it to ‘Recipe’, you need to make use of the wp_postratings_schema_itemtype
filter as shown in the sample code above.
How To Add Your Site Logo For Google Rich Snippets
<?php
add_filter( 'wp_postratings_site_logo', 'wp_postratings_site_logo' );
function wp_postratings_site_logo( $url ) {
return 'http://placehold.it/350/150.png';
}
?>
Very good