Support

Account

Home Forums General Issues Multiple checkbox queries? Reply To: Multiple checkbox queries?

  • I got this to work but now what I need is results for Austin to show first then results for Houston.

    $args = array(
    	'child_of' => '7',
    	'post__not_in' => array(2228),
    	'meta_query' => array(
    	'relation' => 'OR',
    	  array(
    	    'key' => 'select_office_location',
    	    'value' => '"Austin"',
    	    'compare' => 'LIKE'
    	  	),
    	  array(
    	    'key' => 'select_office_location',
    	    'value' => '"Houston"',
    	    'compare' => 'LIKE'
    		)
    	),
            'post_type' => 'page',
            'post_status' => 'publish',
            'order' => 'ASC',
    	'orderby' => 'meta_value',
    	'posts_per_page' => '20',
    	'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1 ),
    );