Title: Top rated
Last modified: August 20, 2016

---

# Top rated

 *  Resolved [crashy11](https://wordpress.org/support/users/crashy11/)
 * (@crashy11)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/)
 * Hello,
 * I got star raiting top rated widget on my sidebar, I would like to have it on
   one page with bigger rated list then on sidebar. Is there any shortcode to insert
   top rated raitings into page?
 * Thanks
 * [http://wordpress.org/extend/plugins/rating-widget/](http://wordpress.org/extend/plugins/rating-widget/)

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/topic/top-rated/page/2/?output_format=md) [→](https://wordpress.org/support/topic/top-rated/page/2/?output_format=md)

 *  [sfmexx](https://wordpress.org/support/users/sfmexx/)
 * (@sfmexx)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591398)
 * I need this too!!!
 *  [senthamizh](https://wordpress.org/support/users/senthamizh/)
 * (@senthamizh)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591428)
 * hi,
    is it possible to get top 100 votes in a page.. waiting for your reply…..
 *  Thread Starter [crashy11](https://wordpress.org/support/users/crashy11/)
 * (@crashy11)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591429)
 * yep I need that too.
 *  Plugin Author [Vova Feldman](https://wordpress.org/support/users/svovaf/)
 * (@svovaf)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591436)
 * There’s no shortcode for that yet. But we’ve already developed this for one of
   our clients in a form of custom page template. Here’s the instructions:
    1. Download our [Top-Rated Template](https://wordpress.org/support/topic/top-rated/rating-widget.com/download/wordpress/extensions/top-rated.zip?output_format=md)
    2. Extract the zip and copy the Top-Rated Template file, `top-rated-page.php`, 
       to your active theme’s folder.
    3. Now, create a new empty page, and make sure to modify the page template to ‘
       Rating-Widget Top Rated Template’ ([screenshot](http://img.rating-widget.com/wordpress/top-rated-template.png))
    4. You can give the page any title you like. Now publish the page and link it to
       wherever you wish.
    5. We’ve also added some initial css rules, it’s a good start. Just make sure to
       attach the rules to your WP (you can append the rules to your theme’s style.
       css file). Later you can modify it as you like.
 * Please let me know if that was helpful.
 *  [senthamizh](https://wordpress.org/support/users/senthamizh/)
 * (@senthamizh)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591437)
 * download link is not working….
 *  Plugin Author [Vova Feldman](https://wordpress.org/support/users/svovaf/)
 * (@svovaf)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591438)
 * Sorry for that, try this:
    [http://rating-widget.com/download/wordpress/extensions/top-rated.zip](http://rating-widget.com/download/wordpress/extensions/top-rated.zip)
 *  [senthamizh](https://wordpress.org/support/users/senthamizh/)
 * (@senthamizh)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591440)
 * Thanks for the reply…
    i need to filter with category based on vote not on rating
 *  [sfmexx](https://wordpress.org/support/users/sfmexx/)
 * (@sfmexx)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591490)
 * is it possible to modify the content of the template?
 * – I dont like to display page ratings, only the article ratings are important
   for me.
    – Then, the images are not displayed, whats wrong? – Is it possible 
   to deactivate the excerpt text?
 * thanks
 *  Plugin Author [Vova Feldman](https://wordpress.org/support/users/svovaf/)
 * (@svovaf)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591493)
 * You can hack the template by modifying the `GetTopRated` method within the main
   plugin file – **rating-widget.php**.
 * That’s the current template:
 *     ```
       $html .= '<li class="rw-wp-ui-top-rated-list-item">
           <div>
               <b class="rw-wp-ui-top-rated-list-count">' . $count . '</b>
               <img class="rw-wp-ui-top-rated-list-item-thumbnail" src="' . $thumbnail . '" alt="" />
               <div class="rw-wp-ui-top-rated-list-item-data">
                   <div>
                       <a class="rw-wp-ui-top-rated-list-item-title" href="' . $permalink . '" title="' . $title . '">' . $short . '</a>
                       <div class="rw-ui-container rw-class-' . $rclass . ' rw-urid-' . $urid . '"></div>
                   </div>
                   <p class="rw-wp-ui-top-rated-list-item-excerpt">' . $excerpt . '</p>
               </div>
           </div>
       </li>';
       ```
   
 *  [ak.azmi](https://wordpress.org/support/users/akazmi-1/)
 * (@akazmi-1)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591539)
 * Thanks for referring me to this thread. I have created the page and do some little
   customization.
 * My question is, how to override the default number of posts set via top-rated
   widget or if I remove the widget? I want to increase the number of posts shown
   on the page.
 * Thanks.
 *  Plugin Author [Vova Feldman](https://wordpress.org/support/users/svovaf/)
 * (@svovaf)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591550)
 * 1. Open the main plugin file, **rating-widget.php**
    2. Search for `GetTopRatedData`
   method. 3. Within the method, search for: `"limit" => 5` 4. You can modify the
   limit up to 25 items.
 * Let me know if that what you’ve meant.
 *  Anonymous User 4104441
 * (@anonymized-4104441)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591564)
 * this is great!
    now, how can i do this for posts from specific categories? 🙂
 * _query\_posts_ doesn’t work for me 🙁
 *  Plugin Author [Vova Feldman](https://wordpress.org/support/users/svovaf/)
 * (@svovaf)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591565)
 * This limit applies to all of the categories.
 *  Anonymous User 4104441
 * (@anonymized-4104441)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591566)
 * i see, but what i mean is how to show most rated posts on a page, from specific
   category?
 * thanks
 *  Plugin Author [Vova Feldman](https://wordpress.org/support/users/svovaf/)
 * (@svovaf)
 * [13 years ago](https://wordpress.org/support/topic/top-rated/#post-3591567)
 * Oh… got it now. Unfortunately currently it’s impossible, but it’s part of our
   TODOs list.

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/topic/top-rated/page/2/?output_format=md) [→](https://wordpress.org/support/topic/top-rated/page/2/?output_format=md)

The topic ‘Top rated’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/rating-widget_4db0e0.svg)
 * [Rating-Widget: Star Review System](https://wordpress.org/plugins/rating-widget/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/rating-widget/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/rating-widget/)
 * [Active Topics](https://wordpress.org/support/plugin/rating-widget/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/rating-widget/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/rating-widget/reviews/)

 * 22 replies
 * 8 participants
 * Last reply from: [yflor3](https://wordpress.org/support/users/yflor3/)
 * Last activity: [12 years, 10 months ago](https://wordpress.org/support/topic/top-rated/page/2/#post-3591633)
 * Status: resolved