Modifier l’url des pages auteurs.

PHP
                    function undfnd_edit_author_base() {
    global $wp_rewrite;
    $author_slug = 'votre-nouveau-slug';
    $wp_rewrite->author_base = $author_slug;
}
add_action('init', 'undfnd_edit_author_base');