has_custom_header

函数
has_custom_header ( No parameters )
返回值
  • (bool) True if a custom header is set. False if not.
定义位置
相关方法
get_custom_headeradd_custom_image_headerthe_custom_header_markuphas_custom_logoget_custom_header_markup
引入
4.7.0
弃用
-

has_custom_header – 这是一个WordPress函数,用于检查当前主题是否已经定义了一个自定义头像。自定义头像是一个允许用户上传自定义图片或标志作为网站头像的功能。如果当前主题中已经定义了自定义页眉,函数has_custom_header返回true。

检查是否设置了自定义页眉。

function has_custom_header() {
	if ( has_header_image() || ( has_header_video() && is_header_video_active() ) ) {
		return true;
	}

	return false;
}

常见问题

FAQs
查看更多 >