我遇到了wordpress meta_query问题, 从这个简单的查询中我无法输出值:
(
[post_type] => offres
[meta_query] => Array
(
[0] => Array
(
[key] => topics
[value] => Array
(
[0] => PADINE
[1] => ALKEKENGE
)
[compare] => IN
)
)
)
这是php代码:
$args = array(
'post_type' => 'offres', 'meta_query' => array(
array(
'key' => 'topics', 'value' => array('PADINE', 'ALKEKENGE'), 'compare' => 'IN'
)
)
);
在我的wordpress管理员上, 我有一个帖子分配了” topics”元键和” PADINE”作为值, 我不知道为什么它不起作用?
谢谢你的帮助。
#1
有时, 由于数据的序列化结构, 很难获得元值。
$args = array(
'post_type' => 'offres', 'meta_query' => array(
'relation' => 'OR', array(
'key' => 'topics', 'value' => 'PADINE', 'compare' => 'LIKE', ), array(
'key' => 'topics', 'value' => 'ALKEKENGE', 'compare' => 'LIKE', )
)
);
希望它能工作,
谢谢
评论前必须登录!
注册