Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1040157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:11:21+00:00 2026-05-16T15:11:21+00:00

How can I remove the author prefix on a WordPress website, I have done

  • 0

How can I remove the author prefix on a WordPress website, I have done a quick Google but have only found htaccess redirects which I don’t want to resort to.

To clarify I want to turn this:

http://www.domain.com/author/cameron/

into this

http://www.domain.com/cameron/

I don’t want to use any redirects of any kind, but actual PHP code I can use in the functions.php file, as I want all links across the site that use the author stuff to auto update without keeping there original links and then redirecting to the new one.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T15:11:21+00:00Added an answer on May 16, 2026 at 3:11 pm

    You basically need to add WP rewrite rules to match the names of each of your users in the desired form. This is what the WP No Category Base does for categories, so most of the code in my answer is adapted from that plugin.

    The primary part of the plugin is a function which hooks into the author_rewrite_rules filter and replaces the author rewrite rules. This retrieves all the user names and adds a rewrite rule specifically for each user (the below won’t handle feeds, so look at the WP No Category Base source if you need that).

    add_filter('author_rewrite_rules', 'no_author_base_rewrite_rules');
    function no_author_base_rewrite_rules($author_rewrite) { 
        global $wpdb;
        $author_rewrite = array();
        $authors = $wpdb->get_results("SELECT user_nicename AS nicename from $wpdb->users");    
        foreach($authors as $author) {
            $author_rewrite["({$author->nicename})/page/?([0-9]+)/?$"] = 'index.php?author_name=$matches[1]&paged=$matches[2]';
            $author_rewrite["({$author->nicename})/?$"] = 'index.php?author_name=$matches[1]';
        }   
        return $author_rewrite;
    }
    

    The other key part of the plugin is a function which hooks into the author_link filter and removes the ‘author’ base from the returned URL.

    add_filter('author_link', 'no_author_base', 1000, 2);
    function no_author_base($link, $author_id) {
        $link_base = trailingslashit(get_option('home'));
        $link = preg_replace("|^{$link_base}author/|", '', $link);
        return $link_base . $link;
    }
    

    See this gist: http://gist.github.com/564465

    This doesn’t handle redirection from the old style author URLs, again, see the WP No Category Base source if you need to do that.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can one remove all text, but leave the structure intact? for example: <animals>
How can I remove those annoying Mac OS X .DS_Store files from a Git
How can I remove duplicate values from an array in PHP?
How can I remove the very first 1 from any string if that string
How can I remove the black background color in the corners of the ellipse?
How can I remove the xmlns:... namespace information from each XML element in C#?
Which features and services in Vista can you remove with nLite (or tool of
Is there any Visual Studio Add-In that can do the remove method refactoring? Suppose
How can I use jquery to remove a SPECIFIC div that has no children
How can I customise the Site Actions menu to remove or rename 'standard' menu

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.