我正在尝试编辑我的author.php wordpress模板,以便它显示任何一位作者的帖子,但只显示一个特定类别的帖子。到目前为止,我一直在尝试使用query_posts函数来获取类别,但不是作者。根据我这样做的方式,到目前为止,帖子要么不显示,要么该类别中的所有帖子都会出现,无论作者如何。
这是我看过wordpress.org管理员引用的相应代码,但它对我不起作用,我找不到任何其他示例。任何想法为什么不起作用?感谢您的帮助。
//Gets author info to display on page and for use in query
<?php
$curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
?>
//Queries by category and author and starts the loop
<?php
query_posts('category_name=blog&author=$curauth->ID;');
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
//HTML for each post
<?php endwhile; else: ?>
<?php echo "<p>". $curauth->display_name ."hasn't written any articles yet.</p>"; ?>
<?php endif; ?>
============还试过============
<?php
new WP_Query( array( 'category_name' => 'blog', 'author' => $curauth->ID ) );
?>
这也不起作用,但它会按作者过滤帖子,而不是按类别过滤!我做错了什么?
谢谢!
答案 0 :(得分:2)
可以使用pre_get_posts
过滤器完成此任务。通过这种方式,除了类别之外,还可以过滤作者:
// functions.php
add_action( 'pre_get_posts', 'wpcf_filter_author_posts' );
function wpcf_filter_author_posts( $query ){
// We're not on admin panel and this is the main query
if ( !is_admin() && $query->is_main_query() ) {
// We're displaying an author post lists
// Here you can set also a specific author by id or slug
if( $query->is_author() ){
// Here only the category ID or IDs from which retrieve the posts
$query->set( 'category__in', array ( 2 ) );
}
}
}
答案 1 :(得分:1)
我刚刚遇到了同样的问题,我在循环开始后使用if(in_category('blog'))
检查解决了这个问题,如下所示:
if ( have_posts() ) : while ( have_posts() ) : the_post();
if(in_category('blog')) {
?>
<!-- Loop HTML -->
<?php } endwhile; else: ?>
<p><?php _e('No posts by this author.'); ?></p>
<?php endif; ?>
当然,$ curauth检查将在此之前完成。