我正在尝试通过自定义vafpress元数据框订购自定义后期类型的WP_Query:
我的Metabox
$mb = new VP_Metabox(array(
'id' => 'meta_person',
'types' => array('person'),
'title' => __('Person informations', 'dr_domain'),
'priority' => 'high',
'template' => array(
array(
'type' => 'textbox',
'name' => 'person_name',
'label' => __('Your Name', 'vp_textdomain'),
),
array(
'type' => 'textbox',
'name' => 'person_city',
'label' => __('Your City', 'vp_textdomain'),
),
),
));
我想通过他们的城市检索人员,因为这是我的查询:
$args = array(
'post_type' => 'person',
'meta_query'=> array(
array(
'key' => 'meta_person.person_city',
'compare' => 'LIKE',
'value' => 'Paris',
),
),
);
WP_Query没有返回任何结果。我也尝试了这个选项,没有结果:
'meta_key' => 'person_city' // No Result
那么如何将WP_Query与字段和没有元框ID一起使用。 谢谢。