Custom_Image_Header::process_default_headers()publicWP 3.0.0

Processes the default headers.

Метод класса: Custom_Image_Header{}

Хуков нет.

Возвращает

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

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

$Custom_Image_Header = new Custom_Image_Header();
$Custom_Image_Header->process_default_headers();

Заметки

  • Global. Массив. $_wp_default_headers

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

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

Код Custom_Image_Header::process_default_headers() WP 6.5.2

public function process_default_headers() {
	global $_wp_default_headers;

	if ( ! isset( $_wp_default_headers ) ) {
		return;
	}

	if ( ! empty( $this->default_headers ) ) {
		return;
	}

	$this->default_headers    = $_wp_default_headers;
	$template_directory_uri   = get_template_directory_uri();
	$stylesheet_directory_uri = get_stylesheet_directory_uri();

	foreach ( array_keys( $this->default_headers ) as $header ) {
		$this->default_headers[ $header ]['url'] = sprintf(
			$this->default_headers[ $header ]['url'],
			$template_directory_uri,
			$stylesheet_directory_uri
		);

		$this->default_headers[ $header ]['thumbnail_url'] = sprintf(
			$this->default_headers[ $header ]['thumbnail_url'],
			$template_directory_uri,
			$stylesheet_directory_uri
		);
	}
}