$args = array(
'post_type' => 'hosting',
'posts_per_page' => -1,
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'hosting_price',
'compare' => '>=',
'type' => 'NUMERIC',
'value' => 50
),
array(
'key' => 'hosting_price',
'compare' => '<=',
'type' => 'NUMERIC',
'value' => 10000
),
array(
'key' => 'hosting_disc_space',
'compare' => '>=',
'type' => 'NUMERIC',
'value' => 100
),
array(
'key' => 'hosting_disc_space',
'compare' => '<=',
'type' => 'NUMERIC',
'value' => 50000
)
),
array(
'relation' => 'AND',
array(
'key' => 'hosting_available_sites',
'compare' => '>=',
'type' => 'NUMERIC',
'value' => 1
),
array(
'key' => 'hosting_available_sites',
'compare' => '<=',
'type' => 'NUMERIC',
'value' => 30
),
array(
'key' => 'hosting_db_avaliable',
'compare' => '>=',
'type' => 'NUMERIC',
'value' => 1
),
array(
'key' => 'hosting_db_avaliable',
'compare' => '<=',
'type' => 'NUMERIC',
'value' => 30
),
array(
'key' => 'hosting_traffic',
'compare' => '=',
'type' => 'NUMERIC',
'value' => 0
),
array(
'key' => 'hosting_ssl',
'compare' => '=',
'value' => '1'
)
)
);