WordPress修改作者链接

    WordPress默认的作者链接为:

    http://yousite.com/author/

    作者名 ,追求个性的博主常常会选择一个个性容易记住的作者链接前缀,如主题笔记就采用的是:

    https://www.topicnote.com/member/1.html

    以member作为前缀,作者ID为后缀,并以.html结尾。

    WordPress修改作者链接

    具体代码:

    //更改作者存档前缀 
    add_action('init', 'change_author_base');
    function change_author_base() {
    global $wp_rewrite;
    $author_slug = 'member'; // change slug name
    $wp_rewrite->author_base = $author_slug;
    }

    使用这段代码即可更改作者链接,下一节将会带来以作者ID结尾教程

    Responses

    您的电子邮箱地址不会被公开。 必填项已用*标注

    Up Next:

    使用七牛加速站点图片

    使用七牛加速站点图片