Skip to content

Instantly share code, notes, and snippets.

@besimhu
Created March 15, 2015 16:07
Show Gist options
  • Save besimhu/112ecbe452a6cd229559 to your computer and use it in GitHub Desktop.
Save besimhu/112ecbe452a6cd229559 to your computer and use it in GitHub Desktop.
For when you want something other than /author
// Rewrite author slug
function change_author_permalinks() {
global $wp_rewrite;
$wp_rewrite->author_base = 'people';
$wp_rewrite->author_structure = '/' . $wp_rewrite->author_base. '/%author%';
}
add_action('init','change_author_permalinks');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment