preprocess_signup_form action-hookWP 3.0.0

Fires when the site sign-up form is sent.

Usage

add_action( 'preprocess_signup_form', 'wp_kama_preprocess_signup_form_action' );

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

	// action...
}

Changelog

Since 3.0.0 Introduced.

Where the hook is called

In file: /wp-signup.php
preprocess_signup_form
wp-signup.php 1002
do_action( 'preprocess_signup_form' );

Where the hook is used in WordPress

Usage not found.