Skip to content

Instantly share code, notes, and snippets.

@jaylong255
Created October 11, 2017 05:52
Show Gist options
  • Save jaylong255/92d17c05ed24120014d09ed3e24400e4 to your computer and use it in GitHub Desktop.
Save jaylong255/92d17c05ed24120014d09ed3e24400e4 to your computer and use it in GitHub Desktop.
customer query
$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