before_signup_header
The WordPress Core before signup header hook.
Description
Parameters (1)
- 0. $wp_admin_bar_init (string) =>
'_wp_admin_bar_init'
- The
wp
admin bar init.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'before_signup_header', $wp_admin_bar_init );
- The following example is for adding a hook callback.
- // define the before_signup_header callback
- function action_before_signup_header( $wp_admin_bar_init ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'before_signup_header', 'action_before_signup_header', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'before_signup_header', 'action_before_signup_header', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /wp-includes/default-filters.php
- add_action( 'before_signup_header', '_wp_admin_bar_init' );
- /wp-signup.php
- do_action( 'before_signup_header' );