我已经做了两个下拉列表,这是一个自定义字段。
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文档,但什么都不管用。我很困惑
relation 和
compare 在此查询中。