我会过滤template_redirect
, 使用is_author()
有条件的,例如:
function theme_slug_redirect_author_archive() {
if ( is_author() ) {
// Put your redirect code here;
// Redirect to home_url(), or
// return a 404, or whatever
}
}
add_action( \'template_redirect\', \'theme_slug_redirect_author_archive\' );