This Filter provides access to add/modify content that is displayed before user's profile fields in profile template.
Hook Name: arm_profile_content_before_fields_outside
Hook Type: Filter
Source: core/classes/class.arm_members_directory.php
Usage:
add_filter('arm_profile_content_before_fields_outside', 'your_function', 10, 3);
function your_function($content = '', $args = array(), $user= array()) {
//$user Array of User with details.
//$args Shortcode Argument.
//$content content before user profile fields
return $content;
}
Parameters:
$content
Content to display before user’s profile fields section.
$args
Array of arguments of profile template shortcode.
$user
array of user detail.