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 vote:
<?php query_posts('gdsr_sort=thumbs&posts_per_page=2&post_parent='.$post->ID); ?>
I would like now to only retrieve those post that have 1 or more thumbs up.
Any suggestions?