achilles283
10/17/2013 - 1:49 PM

From http://wpsnipp.com/index.php/functions-php/change-the-author-slug-url-base/

add_action('init', 'cng_author_base');
function cng_author_base() {
  global $wp_rewrite;
  $author_slug = 'profile'; // change slug name
  $wp_rewrite->author_base = $author_slug;
}