查询帖子取决于使用acf的转发器字段中的自定义字段

时间:2018-07-16 02:07:36

标签: wordpress repeater advanced-custom-fields

我正在一家酒店网站上并试图进行价格搜索

我在帖子类型内有自定义帖子类型名称的酒店,我有repeater field 直放站内,我有一些价格的房间 rooms inside custom post type

我正在尝试抛出这个价格

我尝试过的代码

$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',
    ),
)

);

我什么都没想到,因为转发器字段中的字段,但我找不到解决方法

0 个答案:

没有答案