有一个简单的解决方案。将此代码添加到主题functions.php
. 之后,您需要从以下位置重新保存永久链接Settings->Permalinks
在WordPress仪表板中。
function remove_author_base() {
/**
* Remove Author base from Wp Links
* Serkan Algur
*/
global $wp_rewrite;
$wp_rewrite->author_base = \'\';
}
add_action(\'init\', \'remove_author_base\', 1);
我在本地主机(启用了htaccess的apache服务器)上测试了这段代码。请评论代码是否有效。