Adding tabs in user page

4.78K viewsCore
1

Is there a way to add new tabs in the user page? class-user.php seems to be the right file to look at but is not in the theme location…

Is there a way to overwrite it while keeping uptades possible? Would it be enough to add new tab there?

Thanks

1
ap_register_user_page('amy_custom_user_page', __('My page', 'ap'), 'my_custom_user_page');

function my_custom_user_page(){

   //YOUR HTML HERE

}

Cool… so easy to create a new tab… thanks
Is there a way to modify or even remove existing ones easily?