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
function my_pre_shortcode() {
// your code here
}
add_action( 'um_after_everything_output', 'my_pre_shortcode', 10 );