[Plugin: GD Star Rating] HOW TO List all category votes
-
I’m using this code to show voting block on single.php
<?php wp_gdsr_render_article_thumbs(10, false); ?>Its a “thumbs-up” voting for category “movies” (id=2).
How to show all posts of this category with voting number on some static page (page.php)?
Tryed to use this code
<?php wp_gdsr_render_rating_results(array('template_id' => 10, 'category' => 2, 'hide_empty' => false, 'min_votes' => 1)); ?>but it gives just text “Title Votes Rating Review” with html
<table><thead><td class="title">Title</td><td class="votes">Votes</td><td class="rating">Rating</td><td class="rating">Review</td></thead><tbody></tbody></table>I have read all the docs, and nothing found. Please, HELP!
The topic ‘[Plugin: GD Star Rating] HOW TO List all category votes’ is closed to new replies.