Caspa
Forum Replies Created
-
Hello everyone,
I’m using the 3.4.15 version and I have the same issue.
I’ve never used any previous version.Thank you for your help!
Caspa
Hello,
I just solved my issue by adding this to function.php :
add_filter( 'pre_get_posts' , 'my_change_order' ); function my_change_order( $query ) { if($query->is_archive) $query->set( 'meta_key', '_thumbs_rating_up' ); $query->set( 'orderby' , 'meta_value' ); $query->set( 'order' , 'desc' ); return $query; }But it doesn’t display the posts with no vote because they’re missing from the postmeta table as long as they don’t have any vote.
Maybe you know how I could change that?Thanks!
Caspa
Hello Ricard,
Let me first thank you for your great plugin 🙂
I’m using the thumbs rating system for an archive posts page.
It is currently displayed by date and I’d like to reorder them by vote.
As the votes are stored in the postmeta table I couldn’t manage to do a posts_orderby.
Maybe you could give me a hint? 🙂PS : I’ve tried your shortcode but I’d like to keep the ‘post list’ style.
Thank you!
Caspa