do_signup_header

The timeline below displays how wordpress function do_signup_header has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.9

/**
 * Prints signup_header via wp_head.
 *
 * @since MU (3.0.0)
 */
function do_signup_header()
{
    /**
     * Fires within the head section of the site sign-up screen.
     *
     * @since 3.0.0
     */
    do_action('signup_header');
}

WordPress Version: 4.9

/**
 * Prints signup_header via wp_head
 *
 * @since MU (3.0.0)
 */
function do_signup_header()
{
    /**
     * Fires within the head section of the site sign-up screen.
     *
     * @since 3.0.0
     */
    do_action('signup_header');
}

WordPress Version: 4.1

/**
 * Prints signup_header via wp_head
 *
 * @since MU
 */
function do_signup_header()
{
    /**
     * Fires within the head section of the site sign-up screen.
     *
     * @since 3.0.0
     */
    do_action('signup_header');
}

WordPress Version: 3.7

/**
 * Prints signup_header via wp_head
 *
 * @since MU
 */
function do_signup_header()
{
    /**
     * Fires within the <head> section of the site sign-up screen.
     *
     * @since 3.0.0
     */
    do_action('signup_header');
}