after_signup_form
Action HookDescription
Fires after the sign-up forms, before wp_footer.Hook Information
File Location |
wp-signup.php
View on GitHub
|
Hook Type | Action |
Line Number | 1049 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into after_signup_form
add_action('after_signup_form', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-signup.php:1049
- How this hook is used in WordPress core
<?php
1044 /**
1045 * Fires after the sign-up forms, before wp_footer.
1046 *
1047 * @since 3.0.0
1048 */
1049 do_action( 'after_signup_form' );
1050 ?>
1051
1052 <?php
1053 get_footer( 'wp-signup' );
PHP Documentation
<?php
/**
* Fires after the sign-up forms, before wp_footer.
*
* @since 3.0.0
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-signup.php
Related Hooks
Related hooks will be displayed here in future updates.