按多个自定义字段查询帖子

时间:2018-04-21 作者:Bhavin

我已经做了两个下拉列表,这是一个自定义字段。

Custom Field 1 :- 工业

Values of Custom Field 1 :- 金融服务、电子商务、保险等。

Custom Field 2 :- primary\\u功能

Values of Custom Field 2 :- platform\\u decision\\u engine、user\\u authentication、data\\u provider\\u verification等。

还有我的Post Type Name is:-提供商。

现在,我想获取具有多个自定义字段的帖子。

所以,我尝试了这个查询。但它不起作用。

$args = array(
    \'numberposts\'   => -1,
    \'post_type\'     => \'providers\',
    \'meta_query\'    => array(
        \'relation\'      => \'AND\',
        array(
            \'key\'       => \'industry\',
            \'value\'     => \'financial_services\',
            \'compare\'   => \'=\'
        ),
        array(
            \'key\'       => \'primary_functionality\',
            \'value\'     => \'platform_decision_engine\',
            \'compare\'   => \'=\'
        )
    )
);
即使我尝试了单个自定义字段,但它也不起作用。

// args
$args = array(
    \'numberposts\'   => -1,
    \'post_type\'     => \'providers\',
    \'meta_key\'      => \'industry\',
    \'meta_value\'    => \'financial_services\'
);
我对wordpress不太有经验。我读过wordpress文档,但什么都不管用。我很困惑relationcompare 在此查询中。

1 个回复
SO网友:Munish Kumar

如果您是新来的,并且感到困惑,请遵循以下链接

https://stackoverflow.com/questions/11068795/wordpress-get-post-based-on-meta-field-content

https://rudrastyh.com/wordpress/meta_query.html

也许这些对你有帮助。

结束

相关推荐