Guest User

Untitled

a guest
May 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. add_action('init','change_author_permalinks');
  2. function change_author_permalinks()
  3. {
  4. global $wp_rewrite;
  5. $wp_rewrite->author_base = 'member'; // Change 'member' to be the base URL you wish to use
  6. $wp_rewrite->author_structure = '/' . $wp_rewrite->author_base. '/%author%';
  7. }
Add Comment
Please, Sign In to add comment