um_after_header_info

Hook type

Action

Description

Insert after header info some content

Parameters

$user_id

(int) User ID

$args

(array) Form Arguments

Usage

add_action( 'um_after_header_info', 'function_name', 10, 2 );

Examples

<?php
add_action( 'um_after_header_info', 'my_after_header_info', 10, 2 );
function my_after_header_info( $user_id, $args ) {
    // your code here
}
?>

Change Log

Since: 2.0

Source

um_after_header_info is located in includes/core/um-actions-profile.php::line 971