Using query_posts To Sort Highest/Lowest Rated Posts
-
Is this the most efficient method to sort the highest/lowest rated posts?
<?php query_posts( array( 'meta_key' => 'ratings_average', 'orderby' => 'meta_value_num', 'order' => 'DESC' ) ); ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Using query_posts To Sort Highest/Lowest Rated Posts’ is closed to new replies.