你如何在Wordpress中查询来自多个作者的帖子?

时间:2010-05-13 18:44:11

标签: php wordpress

如何查询Wordpress中多位作者的帖子?

像这样的东西: query_posts('author=9,10&post_status=publish&orderby=date')

但这不起作用。

4 个答案:

答案 0 :(得分:2)

根据此文档,没有官方支持:http://codex.wordpress.org/Function_Reference/query_posts - 在“作者参数”标题下。

但是,深入研究源代码会发现:http://wordpress.taragana.net/nav.html?wp-includes/classes.php.html#query_posts

$author_array = preg_split('/[,\s]+/', $q['author']);
for ($i = 1; $i < (count($author_array)); $i = $i + 1) {
    $whichauthor .= ' '.$andor.' post_author '.$eq.' '.intval($author_array[$i]);
}
$whichauthor .= ')';

要查看您的逗号分隔列表是否正确使用,我将继续开始向WP_Query::get_posts()函数抛出调试行。例如,$whichauthor的最终值是什么?

答案 1 :(得分:2)

我认为这是正确的方法:

function yclads_posts_where_followed_authors($where) {
    global $wpdb;
    $authors_ids = array(0,1,2,3);//array of authors IDs

    if (count($authors_ids) > 0) 
    {
         $where .= ' AND ' . $wpdb->posts . '.post_author IN(' . implode (',',$authors_ids) . ') ';
    }
    else 
    {
        $where .= ' AND 1=2'; //do not return results
    }
    return $where;
}

add_filter('posts_where', 'posts_where_filter_authors');

答案 2 :(得分:0)

query_posts()函数仅用于支持一次查询一个作者。如果您想显示多位作者,我建议您尝试以下方法之一:

  1. 创建您自己的自定义查询以包含多个作者ID。您可以使用$ wpdb-&gt; query()来运行数据库上的任何SQL语句,因此您绝对可以获得多个作者的所有帖子的列表,这只需要更多的工作。
  2. 第二个选项是按作者对帖子进行分组,并为每个作者ID运行单独的WordPress循环。这会在一定程度上打破您的内容,但您可以在每个部分前面加上一个简短的作者简介。 this site上有示例代码。

答案 3 :(得分:0)

这个略有不同的循环可以在页面上使用不同的查询参数多次工作:

<?php $my_query = new WP_Query('author=9&post_status=publish&orderby=date'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
<?php the_title(); ?></a>
<?php endwhile; ?>