SO网友:J1.
我相信您正在尝试将默认的作者页面更改为其他页面。试试这个。
// Author page
add_action( \'template_redirect\', array( $this, \'wpse_255965_template_redirect\' ), 10, 1 );
function wpse_255965_template_redirect() {
if ( is_author() ) {
wp_safe_redirect( $location, $status );
exit;
}
}
// Author link
add_filter( \'author_link\', array( $this, \'wpse_255965_author_link\' ), 10, 1 );
function wpse_255965_author_link() {
return home_url();
}
第一个函数将作者页面重定向到其他页面(由您决定)。请看
wp_safe_redirect
用于文档。
第二个功能将作者链接更改为主页(home_url
). 再一次,这取决于你把它改成你喜欢的。