Skip to content

Instantly share code, notes, and snippets.

@ajithrn
Created May 31, 2015 08:19
Show Gist options
  • Save ajithrn/4c21ffa69bfdbece15a5 to your computer and use it in GitHub Desktop.
Save ajithrn/4c21ffa69bfdbece15a5 to your computer and use it in GitHub Desktop.
WordPress: rewrite wp author url
<?php
/**
* author base url rewrire
*
*/
function wp_author_base() {
global $wp_rewrite;
$author_slug = 'user-profile'; // change slug name here
$wp_rewrite->author_base = $author_slug;
}
add_action('init', 'wp_author_base');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment