after_signup_form
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 1052
do_action( 'after_signup_form' );