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

不要因为一时的失败和挫折,就忘记以往壮志满满说过要去的远方。人皆有爱生恶死之心,人皆为舍生取死之道。何也见善不明耳。

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' );

请根据自己的实际,修改第 8 行的文章类型。

以上就是WordPress 作者存档页面显示自定义文章类型的内容。在过程中打败自己,在结果上打败别人。更多关于WordPress 作者存档页面显示自定义文章类型的内容请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
WordPress站点Gravatar头像前后台不显示的如何解决办法

WordPress做公司官网好吗?会不会显得档次很低?

WordPress主题需要支持https吗?WordPress站点如何如何实现https?

WordPress站点的页面/标签/分类URL地址如何添加.html?

WordPress站点更换了域名后数据库应该如何操作替换新旧域名?