Skip to content

Instantly share code, notes, and snippets.

@jentanbernardus
Created October 12, 2013 15:50
Show Gist options
  • Save jentanbernardus/6951517 to your computer and use it in GitHub Desktop.
Save jentanbernardus/6951517 to your computer and use it in GitHub Desktop.
WordPress: Change the author slug, URL base
add_action('init', 'kp_author_base');
function kp_author_base() {
global $wp_rewrite;
$author_slug = 'profile'; // change slug name
$wp_rewrite->author_base = $author_slug;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment