um_after_form_fields

Hook type

Action

Description

Some actions after register form fields

Parameters

$args

(array) Register form shortcode arguments

Usage

add_action( 'um_after_form_fields', 'function_name', 10, 1 );

Examples

<?php
add_action( 'um_after_form_fields', 'my_after_form_fields', 10, 1 );
function my_after_form_fields( $args ) {
    // your code here
}
?>

Change Log

Since: 2.0

Source

um_after_form_fields is located in templates/register.php::line 90