Created
October 11, 2017 05:52
-
-
Save jaylong255/92d17c05ed24120014d09ed3e24400e4 to your computer and use it in GitHub Desktop.
customer query
This file contains hidden or 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( | |
'post_type' => "company", | |
'nopaging' => false, | |
'posts_per_page' => '100', | |
'meta_query' => array( | |
'relation' => 'AND', | |
array( | |
'orderby' => 'meta_value_num', | |
'meta_key' => 'sponsored', | |
'order' => 'DESC' | |
), | |
array( | |
'orderby' => 'meta_value_num', | |
'meta_key' => 'ranking', | |
'order' => 'ASC' | |
) | |
) | |
); | |
$customers = new WP_Query($args); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment