display_header_text()WP 3.4.0

Whether to display the header text.

Хуков нет.

Возвращает

true|false.

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

display_header_text();

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

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

Код display_header_text() WP 6.5.2

function display_header_text() {
	if ( ! current_theme_supports( 'custom-header', 'header-text' ) ) {
		return false;
	}

	$text_color = get_theme_mod( 'header_textcolor', get_theme_support( 'custom-header', 'default-text-color' ) );
	return 'blank' !== $text_color;
}