1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | $args = array( 'orderby' => 'title', 'posts_per_page' => -1, 'meta_query' => array( 'relation' => 'AND', 'availability_key' => array( 'key' => 'availability', 'value' => '1' ), 'price' => array( 'key' => 'start_price' ), 'dateavailable' => array( 'key' => 'date_available' ) ), 'orderby' => array( $sortby => 'ASC' ), 'post_type' => 'floorplans' ); $the_query = new WP_Query($args); |