我试图显示当前用户具有特定y
meta key
的帖子数量。
这是我的代码:
values
您正在为当前用户计算所有帖子,忽略 $args = array(
'posts_per_page' => -1,
'post_type' => 'post',
'post_status' => 'publish',
'author' => $current_user_id,
'meta_query' => array(
'key' => 'color',
'value' => array('red', 'blue')
),
);
$posts_array = get_posts( $args );
$the_count = count($posts_array);
echo $the_count;
meta key
。
我只需要将values
作为当前用户$the_count
meta key
value
或'red'
的帖子数量。
我做错了什么?
提前致谢!
答案 0 :(得分:3)
我不确定,但你可以尝试这样的事情:
{{1}}