-
-
Save prionkor/fce2ccdbf9a6ea26ff6b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$args = array( | |
'offset' => $offset, | |
'posts_per_page'=> $display_count, | |
'paged' => $paged, | |
'post_type' => 'resume', | |
'meta_key' => 'ratings_average', | |
'orderby' => 'meta_value_num', | |
'order' => 'DESC', | |
'meta_query' => array( | |
'relation'=> 'AND', | |
array( | |
'key' => 'rating_average', | |
'operator' => 'NOT EXISTS' | |
), | |
array( | |
'key' => 'rating_average', | |
'operator' => 'EXISTS' | |
) | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment