Action: um_after_form

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

Make any custom action after UM Form content.

function my_after_form( $args ) {
    // your code here
}
add_action( 'um_after_form', 'my_after_form' );