do_activate_header

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

WordPress Version: 6.3

/**
 * Adds an action hook specific to this page.
 *
 * Fires on {@see 'wp_head'}.
 *
 * @since MU (3.0.0)
 */
function do_activate_header()
{
    /**
     * Fires within the `<head>` section of the Site Activation page.
     *
     * Fires on the {@see 'wp_head'} action.
     *
     * @since 3.0.0
     */
    do_action('activate_wp_head');
}

WordPress Version: 4.9

/**
 * Adds an action hook specific to this page.
 *
 * Fires on {@see 'wp_head'}.
 *
 * @since MU (3.0.0)
 */
function do_activate_header()
{
    /**
     * Fires before the Site Activation page is loaded.
     *
     * Fires on the {@see 'wp_head'} action.
     *
     * @since 3.0.0
     */
    do_action('activate_wp_head');
}

WordPress Version: 4.6

/**
 * Adds an action hook specific to this page.
 *
 * Fires on {@see 'wp_head'}.
 *
 * @since MU
 */
function do_activate_header()
{
    /**
     * Fires before the Site Activation page is loaded.
     *
     * Fires on the {@see 'wp_head'} action.
     *
     * @since 3.0.0
     */
    do_action('activate_wp_head');
}

WordPress Version: 3.9

/**
 * Adds an action hook specific to this page that fires on wp_head
 *
 * @since MU
 */
function do_activate_header()
{
    /**
     * Fires before the Site Activation page is loaded, but on the wp_head action.
     *
     * @since 3.0.0
     */
    do_action('activate_wp_head');
}

WordPress Version: 3.7

/**
 * Adds an action hook specific to this page that fires on wp_head
 *
 * @since MU
 */
function do_activate_header()
{
    /**
     * Fires before the Site Activation page is loaded, but on the wp_head action.
     *
     * @since 3.0
     */
    do_action('activate_wp_head');
}