我正在一家酒店网站上并试图进行价格搜索
我在帖子类型内有自定义帖子类型名称的酒店,我有repeater field 直放站内,我有一些价格的房间
我正在尝试抛出这个价格
我尝试过的代码
$args = array(
'post_type' => 'hotels',
'posts_per_page' => 4,
'orderby' => 'meta_value_num',
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'room_price',
'compare' => '<=',
'type' => 'NUMERIC',
'value' => 200
),
array(
'key' => 'room_price',
'compare' => '>=',
'type' => 'NUMERIC',
'value' => 100
),
),
'tax_query' => array(
array(
'taxonomy' => 'country',
'field' => 'slug',
'terms' => $cat,
'compare' => 'IN',
),
)
);
我什么都没想到,因为转发器字段中的字段,但我找不到解决方法