get_header_image函数用于获取当前主题的页眉图像URL。
用法:
1. 获取页眉图像URL:
$header_image_url = get_header_image();
2. 获取页眉图像的宽度:
$header_image_width = get_custom_header()->width;
3. 获取页眉图像的高度:
$header_image_height = get_custom_header()->height;
4. 获取页眉图像的默认URL(如果当前主题没有设置自定义页眉图像,则返回默认的页眉图像URL):
$default_header_image_url = get_theme_mod('header_image');
5. 获取页眉图像的默认宽度:
$default_header_image_width = get_theme_support('custom-header', 'width');
6. 获取页眉图像的默认高度:
$default_header_image_height = get_theme_support('custom-header', 'height');
注意事项:
- 该函数在主题的页眉文件(header.php)中使用。
- 该函数只能用于已经启用了自定义页眉图像功能的主题。
- 如果当前主题没有设置自定义页眉图像,则返回默认的页眉图像URL。
0 个评论