johnbocook
9/28/2013 - 5:16 AM

Changes WordPress author slug from author to profile.

Changes WordPress author slug from author to profile.

add_action('init', 'cng_author_base');
function cng_author_base() {
    global $wp_rewrite;
    $author_slug = 'profile'; // change slug name
    $wp_rewrite->author_base = $author_slug;
}