如何查询Wordpress中多位作者的帖子?
像这样的东西:query_posts('author=9,10&post_status=publish&orderby=date')
但这不起作用。
答案 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()函数仅用于支持一次查询一个作者。如果您想显示多位作者,我建议您尝试以下方法之一:
答案 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; ?>