do_action( 'um_profile_footer', $args )
Fires for adding content below User Profile menu.
Internal Ultimate Member callbacks (Priority -> Callback name -> Excerpt):
99 - profile_footer_login_form()
displays User Login form related to messaging extension.
Parameters:
Name | Type | Description |
---|---|---|
$args |
array | User Profile data. |
- Since:
- 2.0
- Source:
Example
Display some content in User Profile footer.
function my_um_profile_footer( $args ) {
// your code here
echo $content;
}
add_action( 'um_profile_footer', 'my_um_profile_footer' );