Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save champsupertramp/20bda2c0575eb9579bdc to your computer and use it in GitHub Desktop.
Save champsupertramp/20bda2c0575eb9579bdc to your computer and use it in GitHub Desktop.
Ultimate Member - Add custom tab & section
<?php
/**
* Add profile content for 'Pages' tab's section
* @param Array $args
* @hook Action 'um_profile_content_pages'
*/
function um_custom_add_profile_content_pages( $args ){
echo "Hello World";
}
add_action('um_profile_content_pages','um_custom_add_profile_content_pages',10,1);
?>
@elias1435
Copy link

hello @champsupertramp ,
would you help me to display all the custom posts in a custom profile tab? I am trying to find but I fail...

Thanks in advance

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment