Forked from ultimatemember/gist:8cdaf61e7bd9de35512c
Last active
November 15, 2019 06:34
-
-
Save dbjpanda/f8713029ab1731103aaab93f81ef527c to your computer and use it in GitHub Desktop.
Extending Ultimate Member Profile Menu using Hooks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* First we need to extend main profile tabs */ | |
add_filter('um_profile_tabs', 'add_custom_profile_tab', 1000 ); | |
function add_custom_profile_tab( $tabs ) { | |
$tabs['mycustomtab'] = array( | |
'name' => 'My custom tab', | |
'icon' => 'um-faicon-comments', | |
); | |
return $tabs; | |
} | |
/* Then we just have to add content to that tab using this action */ | |
add_action('um_profile_content_mycustomtab_default', 'um_profile_content_mycustomtab_default'); | |
function um_profile_content_mycustomtab_default( $args ) { | |
echo 'Hello world!'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment