您只需使用默认作者即可。php页面来完成此操作。如果没有索引,请复制索引。php并将其重命名为author。php
现在,使用pre_get_posts
在作者页面中包含自定义文章类型。此代码包含在函数中。php
function cpt_on_author_page( $query ) {
if ( !is_admin() && $query->is_author() && $query->is_main_query() ) {
$query->set( \'post_type\', array( \'post\', \'philosopher\' ) );
$query->set( \'posts_per_page\', 10 );
}
}
add_action( \'pre_get_posts\', \'cpt_on_author_page\' );