Tagged Questions
0
votes
3answers
169 views
Is there any way of only retrieving posts with one or more thumbs up (GD star rating plugin)?
I'm building a website that uses the GD star rating plugin.
Right now, I'm using the following code to retrieve two posts of the current page (a custom post type called bbp_topic) and sort them by ...
1
vote
2answers
849 views
Why is that gdsr_sort=thumbs (GD start rating plugin) only works with query_posts and not with WP_Query?
This correctly sort posts by thumbs vote (GD star rating plugin):
<?php query_posts('gdsr_sort=thumbs&post_type=bbp_reply&posts_per_page=2&post_parent='.$post->ID); ?>
<?php ...