do_activate_header() WordPress Function

The do_activate_header() function is used to display the header for the theme activation page. This function is only available in WordPress 3.0 and above.

do_activate_header() #

Adds an action hook specific to this page.


Description

Fires on ‘wp_head’.


Top ↑

Source

File: wp-activate.php

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' );
}


Top ↑

Changelog

Changelog
VersionDescription
MU (3.0.0)Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.