Is it possible to sort posts by vote using the GD Star Rating plugin?

First 2 results on googling for “gd star rating sort posts by rating’ are: How to Sort Post by Gd Star Rating Mirror How to reorder posts Mirror Few examples: query_posts(“gdsr_sort=rating”); query_posts(“gdsr_sort=review&sort_order=asc”); query_posts(“gdsr_sort=rating&gdsr_multi=3”); query_posts(“gdsr_sort=votes&sort_order=asc&gdsr_multi=3”);

Comment_form and GD Star Rating

Got it! The key was a custom callback on wp_list_comments. Here’s the snippet of code I used within my comments: <?php if (defined(“STARRATING_INSTALLED”)) : ?> <div class=”rating” style=”float: right”> <?php wp_gdsr_comment_integrate_standard_result(get_comment_ID()); ?> </div> <?php endif; ?>

Get content or excerpt of top rated votes @GD-Star Rating? [closed]

No need for this anymore. You can use the Template Builder in the settings of GD-Star Rating self. Scroll to the bottom right if you have clicked on “Builder” and add a new template. Choose your own settings and paste the function or shortcode in your, respectively, page via the backend or page via WordPress. … Read more