do_activate_header()WP 3.0.0

Adds an action hook specific to this page.

Fires on wp_head.

Хуки из функции

Возвращает

null. Ничего (null).

Использование

do_activate_header();

Список изменений

С версии 3.0.0 Введена.

Код do_activate_header() WP 6.5.2

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