signup_header
Fires within the head section of the site sign-up screen.
Description
do_action( 'signup_header' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'signup_header' );
- The following example is for adding a hook callback.
- // define the signup_header callback
- function action_signup_header( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'signup_header', 'action_signup_header', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'signup_header', 'action_signup_header', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-signup.php
- do_action( 'signup_header' );