wpseek.com
WordPress开发者和主题制作者的搜索引擎



display_header_text › WordPress Function

Since3.4.0
已弃用n/a
display_header_text ( 没有参数 )
返回:
  • (bool)
定义在:
文档:

Whether to display the header text.



源码

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