Skip to content

Instantly share code, notes, and snippets.

@fritids
Created March 26, 2012 20:11
Show Gist options
  • Save fritids/2209319 to your computer and use it in GitHub Desktop.
Save fritids/2209319 to your computer and use it in GitHub Desktop.
Change WordPress Author Url Base
<?php
//http://w4dev.com/wp/change-wordpress-author-url-base/
function my_custom_author_base(){
$author_base = "profile" ; //Your desired author base.
global $wp_rewrite ;
$wp_rewrite->author_base = $author_base ;
$wp_rewrite->flush_rules() ;
}
add_action( 'init', 'my_custom_author_base', 0 ) ;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment