Hi, I am trying to query posts according to values given from GD Star rating plugin. I will use posts from some categories. Anyone capable of seeing what's wrong with this query string?:
<?php query_posts("gdsr_sort=review&sort_order=asc&gdsr_multi=3"&showposts='5'&cat=3,5,6,9,31); ?>
i suppose the order of the quotes (single or double) needs to be sorted:
i would try it this way:
<?php query_posts('gdsr_sort=review&sort_order=asc&gdsr_multi=3&showposts=5&cat=3,5,6,9,31'); ?>
Thank you, alchymyth! I tried with your suggestion, but still got a blank page. I think I have to re-consider the query from GD Star Rating.