这更像是一个效率问题,因为下面的代码实现了我想要的功能。
$user_name = get_the_authour;
$query = new WP_Query(\'author_name=JustinH\');
$author_post_count = $query->post_count;
if ($author_post_count >= jwh_option(\'post_count_set\') {
$post_status = \'publish\';
}else{
$post_status = \'pending\';
}
该查询将收回所有用户元和他们帖子的所有数据。是否有更精确的方法:
$query->post_count;