You can add this pages with new rewrite rules like that : add_action(“init”, function () { add_rewrite_tag(“%specialAuthor%”, “([^&]+)”); foreach ([“personalinformation”, “settings”] as $specialAuthor) { add_rewrite_rule( “author/([^/]+)/($specialAuthor)/?$” , “index.php?author_name=\$matches[1]&specialAuthor=\$matches[2]” , “top” ); } }); add_filter(“author_template_hierarchy”, function ($templates) { $specialAuthor = get_query_var(“specialAuthor”, NULL); if (isset($specialAuthor)) { $author = get_queried_object(); $templates = [ “$specialAuthor-{$author->user_nicename}.php”, “$specialAuthor-{$author->ID}.php”, “$specialAuthor.php”, ]; } … Read more