Action: um_cover_area_content

do_action( 'um_cover_area_content', $user_id, $args )

Fires in the User Profile cover wrapper.

Parameters:
Name Type Description
$user_id int

User Profile ID.

$args array

User Profile data.

Since:
  • 2.10.7 Added $args attribute.
Source:
Example

Make any custom action in the User Profile cover wrapper.

function my_cover_area_content( $user_id, $args ) {
    // your code here
}
add_action( 'um_cover_area_content', 'my_cover_area_content', 10, 2 );