Skip to content

Instantly share code, notes, and snippets.

View peteratomic's full-sized avatar

Peter Harris peteratomic

View GitHub Profile
@ultimatemember
ultimatemember / gist:f7eab149cb33df735b08
Last active April 30, 2023 01:17
Extend Ultimate Member Account page with custom tabs/content
/* add new tab called "mytab" */
add_filter('um_account_page_default_tabs_hook', 'my_custom_tab_in_um', 100 );
function my_custom_tab_in_um( $tabs ) {
$tabs[800]['mytab']['icon'] = 'um-faicon-pencil';
$tabs[800]['mytab']['title'] = 'My Custom Tab';
$tabs[800]['mytab']['custom'] = true;
return $tabs;
}