Determining Author post count

时间:2012-06-13 作者:Justin W Hall

这更像是一个效率问题,因为下面的代码实现了我想要的功能。

$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;

1 个回复
最合适的回答,由SO网友:fdsa 整理而成

This thread wordpress codex上显示了如何确定SQL查询的范围:

$author_post_count = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = \'" . $$username->ID . "\' AND post_type = \'post\' AND post_status = \'publish\'");

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post