um_profile_content_{$nav}_{$subnav}

Hook type

Action

Description

Custom hook to display tabbed content

Parameters

$args

(array) Profile form shortcode arguments

Usage

add_action( 'um_profile_content_{$nav}_{$subnav}', 'function_name', 10, 1 );

Examples

<?php
add_action( 'um_profile_content_{$nav}_{$subnav}', 'my_profile_content', 10, 1 );
function my_profile_content( $args ) {
    // your code here
}
?>

Change Log

Since: 2.0

Source

um_profile_content_{$nav}_{$subnav} is located in templates/profile.php::line 189