我正在尝试计算存在某些元键值的帖子的数量,在这种情况下,帖子的键“纹理”值为“软”,并且键“颜色”为“红色”,'蓝色”或“绿色”。
我的代码没有错误,但它似乎计算了所有帖子,而不仅仅是那些具有上述元键值的帖子:
$args = array(
'posts_per_page' => -1,
'post_type' => 'post',
'post_status' => 'publish',
'author' => $current_user_id,
'meta_query' => array(
'key' => 'texture',
'value' => 'soft'
),
array(
'key' => 'colours',
'value' => array('red', 'blue', 'green')
)
);
$posts_query = new WP_Query($args);
$the_count = $posts_query->post_count;
echo $the_count;
我究竟做错了什么?
干杯。