欢迎光临
我们一直在努力

WordPress 作者存档页面显示自定义文章类型的内容

建站超值云服务器,限时71元/月

WordPress 默认会创建一个作者存档页面,例如 https://www.wpdaxue.com/author/cmhello 会显示该作者发布的所有文章,但是如果你的网站使用了自定义文章类型,默认情况下,在这个存档页面是不显示该作者发布的自定义文章类型的内容的。如果你希望它显示,可以在主题的 functions.php 添加下面的代码:

1
2
3
4
5
6
7
8
9
10
11
12
/**
 * WordPress 作者存档页面显示自定义文章类型的内容
 * https://www.wpdaxue.com/custom-post-types-author-archives.html
 */
function post_types_author_archives($query) {
	// 添加 questions 这个自定义文章类型到作者存档
	if ( $query->is_author )
		$query->set( 'post_type', array('questions', 'post') );	// 运行后移除这个挂载动作,防止无限执行
	remove_action( 'pre_get_posts', 'post_types_author_archives' );
}
add_action( 'pre_get_posts', 'post_types_author_archives' );

/** * WordPress 作者存档页面显示自定义文章类型的内容 * https://www.wpdaxue.com/custom-post-types-author-archives.html */ function post_types_author_archives($query) { // 添加 questions 这个自定义文章类型到作者存档 if ( $query->is_author ) $query->set( ‘post_type’, array(‘questions’, ‘post’) ); // 运行后移除这个挂载动作,防止无限执行 remove_action( ‘pre_get_posts’, ‘post_types_author_archives’ ); } add_action( ‘pre_get_posts’, ‘post_types_author_archives’ );

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » WordPress 作者存档页面显示自定义文章类型的内容
分享到: 更多 (0)