这是我提出的最佳解决方案,但我欢迎更好的方法:
function change_author_permalinks() {
global $wp_rewrite;
$wp_rewrite->author_base = \'connect/member\';
$wp_rewrite->author_structure = "/" . $wp_rewrite->author_base . \'/%author%\';
add_rewrite_rule(\'connect/member/([^/]+)/?$\', \'index.php?author_name=$matches[1]\', \'top\');
}
add_action(\'init\',\'change_author_permalinks\');