This Filter is helpful to add custom content after the content of member profile / directory template shortcode in front side.
Hook Type: Filter
Source: core/classes/class.arm_shortcodes.php
Usage:
add_filter( 'arm_change_content_after_display_profile_and_directory', 'your_function', 10, 2);
function your_function($content, $atts) {
//$content Shortcode Content.
//$atts Shortcode Arguments.
$content = $content . " Some Content ";
return $content;
}
Parameters:
$content
Shortcode Content
$atts
Shortcode Arguments