Custom Taxonomy Post List
-
With the help of below code i am able to output archive templet/loop with sorting order of the custom field ‘overall-rating’ correctly and i need the same sorting order in my Custom Taxonomy as well. Your support is greatly appreciated.
Notes:
Custom Post Slug is ‘reviews’
Custom Taxonomy Slug is ‘review_categories’function sort_reviews_archive_loop($query) {
if ($query->is_post_type_archive(‘reviews’) && $query->is_main_query()) {
$query->set(‘order’, ‘DESC’);
$query->set(‘meta_key’, ‘overall-rating’);
$query->set(‘orderby’, ‘meta_value_num’);
}
}
add_action(‘pre_get_posts’, ‘sort_reviews_archive_loop’);The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Custom Taxonomy Post List’ is closed to new replies.