What I try to achieve:
获取具有特定条件的CPT帖子数量。My fields
CPT-\'usr\\U msg\'字段名-\'posted\\U user\\U id\'My attemp
add_shortcode(\'count_usr_msg\',\'count_usr_msg\');
function count_usr_msg($atts){
$usr_id = $atts[\'usr_id\'];
$args = array(
\'post_type\' => array( \'usr_msg\' ),
\'meta_query\' => array(
\'relation\' => \'AND\',
array(
\'key\' => \'posted_user_id\',
\'value\' => $usr_id,
\'compare\' => \'=\',
)
)
);
$usr_msg = new WP_Query( $args );
if ($usr_msg->have_posts()) {
$count_posts = wp_count_posts()->publish;
return $count_posts;
}else{
return 0;
}
}
The problem
如果我发布了一个有0篇文章的user\\u id,它将返回0,但当我发布一个user\\u id时has 1 or more it always returns 3.