do_action( 'um_after_form', $args )
Fires after UM Form content.
Parameters:
Name | Type | Description |
---|---|---|
$args |
array | UM Form shortcode arguments. |
- Since:
- 1.3.x
- Source:
Example
function my_after_form( $args ) {
// your code here
}
add_action( 'um_after_form', 'my_after_form' );