buscar habitaciones
// WP_Query arguments $args = array( 'post_type' => array( 'post' ), 'post_status' => array( 'public' ), 'meta_query' => array( 'relation' => 'AND', array( 'key' => 'precio_habitacion', 'value' => '100.000', 'compare' => '<=', 'type' => 'NUMERIC', ), array( 'key' => 'precio_habitacion', 'compare' => '>=', 'type' => 'NUMERIC', ), ), ); // The Query $query = new WP_Query( $args );