Customize Author Permalink Structure
Change your author permalink structure to something more personalized. This snippet changes it to "/profile/name".
PHP
add_action('init', 'change_author_permalink');
function change_author_permalink() {
global $wp_rewrite;
$author_slug = 'profile';
$wp_rewrite->author_base = $author_slug;
}
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY