“用户”在WordPress中基本上是“作者”,因此这些页面可以在example.com/author/{user-name}/
(带或不带尾随斜杠)而实际上,您需要的是更改URL重写的“author permalink base”。例如:
add_action( \'init\', \'set_custom_author_base\' );
function set_custom_author_base() {
global $wp_rewrite;
$wp_rewrite->author_base = \'user\';
}
然后,您可以添加(或修改)
author.php
您的子主题目录中的模板,以输出您想要显示的用户信息(但当然不能像这样在公共URL中共享私有用户信息)
当然,这是一个简单的示例,使用plugin like this 如果你想保持/author/
对于某些角色,但对于其他角色,将其更改。