before_signup_header action-hookWP 4.4.0

Fires before the Site Sign-up page is loaded.

Usage

add_action( 'before_signup_header', 'wp_kama_before_signup_header_action' );

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

	// action...
}

Changelog

Since 4.4.0 Introduced.

Where the hook is called

In file: /wp-signup.php
before_signup_header
wp-signup.php 50
do_action( 'before_signup_header' );

Where the hook is used in WordPress

wp-includes/default-filters.php 662
add_action( 'before_signup_header', '_wp_admin_bar_init' );