do_signup_header() WordPress Function
The do_signup_header() function is used to display the header for the WordPress signup page. This function is used internally by WordPress and should not be called directly.
do_signup_header() #
Prints signup_header via wp_head.
Source
File: wp-signup.php
function do_signup_header() {
/**
* Fires within the head section of the site sign-up screen.
*
* @since 3.0.0
*/
do_action( 'signup_header' );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| MU (3.0.0) | Introduced. |