Uses
Uses | Description |
---|---|
wp-signup.php: signup_header | Fires within the head section of the site sign-up screen. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
Prints signup_header via wp_head
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' ); }
Version | Description |
---|---|
MU (3.0.0) | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/do_signup_header