RC Post Rating
by Rick Curran 0 (0 reviews)

RC Post Rating

This plugin adds the ability for users to provide feedback on pages / posts via up / down rating (up/downvoting) buttons.

RC Post Rating ranks #66,640 among WordPress.org plugins with 0+ active installations, is #1,303 of 1,587 in the Authentication category, and was last updated Jan 31, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 6.9.8 (Current: 7.1.1)
v1.0.10 Current Version v1.0.10
Updated 7 months ago Last Update on 31 Jan, 2026
Refreshed 8 hours ago Last Refreshed on
#1,303 of 1,587 in Authentication
View on WordPress.org
Rank
#66,640
-744 this week
Active Installs
0+
-100%
KW Avg Position
70
No change
Downloads
1.7K
+1 today
Support Resolved
0%
No change
Rating
0%
Review 0 out of 5
0 (0 reviews)

Next Milestone 10

Total Progress 0%
0+ 10+
44,367
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 10 more installs to reach 10+

Rank Changes

44,906 51,075 57,244 63,412 69,581 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026
44,871 51,116 57,361 63,606 69,851 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026
Current #66,640
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026
0 10 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

0.0
0 reviews
Overall 0%
5
0 (0%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about RC Post Rating

This plugin adds a pair of buttons that provide the ability for visitors to your website to give feedback on page / post / custom post type content by up / down rating. The Up/down rating statistics can be view on the respective post lists in the WordPress admin and also via a table of statistics in a Dashboard widget, these statistics can be exported in a CSV format file.
You can configure all of the plugin settings from the "RC Post Rating" menu found in the "Settings" menu in your WordPress admin.
Yes, this plugin adds a new block called "Add Post Rating Block" in the 'Widgets' category of the block inserter. Note that using shortcode provides the ability to override the default settings, currently this is not possible with the block, however, it is possible to use the "Shortcode" block in the editor and add the buttons using the shortcode method instead.
Yes, you can add this to your theme by using the shortcode, you can use the following PHP code in the appropriate file(s) within your site's theme: <?php echo do_shortcode( '[rc_post_rating]' ); ?>
Yes, you can set the default button text on the plugin settings page, use the "RC Post Rating" menu found in the "Settings" menu in your WordPress admin. If using the shortcode method of adding the buttons to your site you can also override these defaults with shortcode attributes.
Yes, but only when using the shortcode. By default the buttons render using a links, whilst this works it is not always the best for accessibility to instead there is an option to use button elements instead. To do this add the type parameter to the shortcode as follows: [rc_post_rating type="button"] For compatibility reasons for existing sites using this plugin the use of type="button" has been added as an optional parameter rather than changing the default button markup.
This plugin doesn't add any CSS styles so you will need to either add some CSS styles to the theme of your site or use the "Additional CSS" function in the WordPress admin to add some CSS styles. The HTML markup for the buttons has a containing DIV element with a class of post-rating-tool, inside this div are two elements that function as clickable buttons, one for up-rating with a class rating-up and one for down-rating with a class rating-down. When a user clicks on one of the button links it will add an additional class of active to that button and a class of disabled to the other button (note that these states persist for the user via a local storage setting in their browser which prevents them from rating a page more than once). Note that as per the previous FAQ item "Can I change the type of element used for the buttons?" it is possible to change the element used for these buttons. Here is an example of the default generated HTML markup: <div class="post-rating-tool" data-post-rating-id="123"> <a href="#yes" class="rating-up active">Yes</a> <a href="#no" class="rating-up disabled">No</a> </div> Here is an example of the generated HTML markup with the type="button" parameter added to the shortcode: <div class="post-rating-tool" data-post-rating-id="123"> <button class="rating-up active">Yes</button> <button class="rating-up disabled">No</button> </div> Here is some example CSS to provide styling for the basic states of the buttons, note that these include styles for both the use of a or button elements: .post-rating-tool a, .post-rating-tool button { border-radius: 6px; background-color: #bbb; color: #000; padding: 10px; margin-left: 5px; margin-right: 5px; box-shadow: 0 2px 3px rgba(0,0,0,0.2); } .post-rating-tool a:hover, .post-rating-tool button:hover { background-color: #ddd; color: #000; box-shadow: 0 2px 3px rgba(0,0,0,0.3); } .post-rating-tool a.active, .post-rating-tool a.active:hover, .post-rating-tool button.active, .post-rating-tool button.active:hover { background-color: #000; color: #fff; } .post-rating-tool a.disabled, .post-rating-tool a.disabled:hover, .post-rating-tool button.disabled, .post-rating-tool button.disabled:hover { background-color: #ddd; color: #ccc; cursor: not-allowed; box-shadow: 0 2px 3px rgba(0,0,0,0.2); }
If the plugin has been installed and activated and you have added rating buttons via either a shortcode or a block to a page on your site or to a template in your theme then you should see the buttons on the content. Click one of the Up / Down buttons and it should save that rating to that content. If you check that content in the WordPress admin you should be able to see "Upvotes" and "Downvotes" columns in the Page / Post listing screen, look for the page / post you clicked the rating button on and you should see a numeric value in either of those columns. You should also be able to see a Dashboard widghet with a statistics table if you have enabled this in the plugin settings. If you think you have this all set up but the buttons don't seem to be working then it's possible something else may be clashing with their functionality. The buttons when clicked submit the rating via WordPress's REST API, if you have somehow disabled the REST API then this will prevent the ratings from working, if this isn't something you have knowingly disabled then it's possible that security plugins such as Wordfence that provide web application firewall type protection may also be blocking it from working. Please check any security software to see if it may be mistakenly blocking it, usually there will be some kind of method to whitelist certain actions within security plugins.

More plugins by Rick Curran

Sign In / Register

You need to sign in or register to use this feature.