Looking to sort by multiple custom fields in with wp_query
-
I’m looking to sort by three custom fields that are not part of the “OR” criteria in the meta_query and I haven’t found a good way to go about it, any suggestions? Here is my code below
<?php $args = array ( 'post_type' => 'team', 'posts_per_page' => -1, 'meta_query' => array( 'relation' => 'OR', array( 'key' => 'department', 'value' => $team, 'compare' => 'IN', ), array( 'key' => 'second_department', 'value' => $team, 'compare' => '=', ) ), 'orderby' => array('rank' => 'ASC', 'position' => 'ASC', 'last_name' => 'ASC' ) ); $team_query = new WP_Query( $args ); $number = 0; ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Looking to sort by multiple custom fields in with wp_query’ is closed to new replies.