Sorting by rating in get_posts
-
I have troubles tring to sort posts by rating.
I tried to follow documentation, and previous topics but didn’t worked:
$args = array('post_type' => 'mycustomposttype'); if( $filter_by_rating ){ $args['orderby'] = 'gdrts'; $args['gdrts_method'] = 'stars-rating'; $args['gdrts_value'] = 'rating'; $args['gdrts_scope'] = 'all'; } $posts = get_posts( $args );
What is wrong?
Thanks
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Sorting by rating in get_posts’ is closed to new replies.