Answers:
您可以将其添加到函数中,它将把段从默认的“作者”重写为“教室”,
function new_author_base() {
global $wp_rewrite;
$author_slug = 'classroom';
$wp_rewrite->author_base = $author_slug;
}
add_action('init', 'new_author_base');
希望对你有帮助
flush_rules()
(在资源上)非常昂贵,因此我不会在每次页面加载时都调用它。如果仅对一个站点执行此操作,则可以将其省略,而仅访问“ 永久链接”页面,这也会刷新规则。
functions.php
绰绰有余(并且不会因意外而被禁用)。
我在http://www.techcartnow.com/author/kapil-khandelwal/ WordPress博客上使用“编辑作者子弹”插件进行了同样的操作。我已经使用此插件修改了“作者子弹”。
“ Edit Author Slug ”插件可让您更改作者基础(作者URL的'/ author /'部分)和author slug(默认为作者的用户名)。
您可以在其中添加functions.php
:
global $wp_rewrite;
$wp_rewrite->author_base = "member"; // or whatever
$wp_rewrite->flush_rules();
http://domain.com/classroom
url下列出所有作者?