after_signup_form action-hookWP 3.0.0

Fires after the sign-up forms, before wp_footer.

Usage

add_action( 'after_signup_form', 'wp_kama_after_signup_form_action' );

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

	// action...
}

Changelog

Since 3.0.0 Introduced.

Where the hook is called

In file: /wp-signup.php
after_signup_form
wp-signup.php 1042
do_action( 'after_signup_form' );

Where the hook is used in WordPress

Usage not found.