wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



display_header_text › WordPress Function

Depuis3.4.0
Dépréciéen/a
display_header_text ( Pas de paramètres )
Retourne:
  • (bool)
Défini(e) dans:
Codex:

Whether to display the header text.



Source

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