register_form action-hookWP 2.1.0

Fires following the 'Email' field in the user registration form.

Usage

add_action( 'register_form', 'wp_kama_register_form_action' );

/**
 * Function for `register_form` action-hook.
 * 
 * @return void
 */
function wp_kama_register_form_action(){

	// action...
}

Changelog

Since 2.1.0 Introduced.

Where the hook is called

In file: /wp-login.php
register_form
wp-login.php 1172
do_action( 'register_form' );

Where the hook is used in WordPress

Usage not found.