display_header_text() – Whether to display the header text.
You appear to be a bot. Output may be restricted
Description
Whether to display the header text.
Usage
$bool = display_header_text();
Parameters
Returns
bool
Source
File name: wordpress/wp-includes/theme.php
Lines:
1 to 8 of 8
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; }