rra-query
// WP_Query arguments
$args = array(
'post_type' => array( 'post' ),
'order' => 'ASC',
'orderby' => 'title',
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'listing-city',
'value' => '$sfm_city',
'compare' => '=',
'type' => 'CHAR',
),
array(
'key' => 'types_of_clients',
'value' => '$sfm_clients',
'compare' => '=',
'type' => 'CHAR',
),
array(
'key' => 'types_of_rooms',
'value' => '$sfm_rooms',
'compare' => '=',
'type' => 'CHAR',
),
),
);
// The Query
$query = new WP_Query( $args );