您可以尝试捕获404模板并将其重定向到author模板,该模板将为所有用户使用相同的模板,即使他们是订阅者(或任何其他没有帖子的用户),如下所示:
function no_404_for_all_users($template) {
global $wp_query;
if( !is_author() && get_query_var(\'author\') && (0 == $wp_query->posts->post) ) {
return get_author_template();
}
return $template;
}
add_filter(\'404_template\', \'no_404_for_all_users\');