do_action( 'um_after_{$mode}_fields', $args )
Fires after UM Form fields.
Note: $mode can be equals to 'login', 'profile', 'register'.
Parameters:
Name | Type | Description |
---|---|---|
$args |
array | UM Form shortcode arguments. |
- Since:
- 1.3.x
- Source:
Examples
function my_after_profile_fields( $args ) {
// your code here
}
add_action( 'um_after_profile_fields', 'my_after_profile_fields' );
function my_after_login_fields( $args ) {
// your code here
}
add_action( 'um_after_login_fields', 'my_after_login_fields' );
function my_after_register_fields( $args ) {
// your code here
}
add_action( 'um_after_register_fields', 'my_after_register_fields' );