Action: um_after_everything_output

do_action( 'um_after_everything_output', $args )

Fires after load shortcode content.

Parameters:
Name Type Description
$args array

Form shortcode arguments.

Since:
  • 2.0
Source:
Example

Make any custom action after load shortcode content.

function my_pre_shortcode() {
    // your code here
}
add_action( 'um_after_everything_output', 'my_pre_shortcode', 10 );