函数原型
header_image()
函数描述
Displays header image URL.
是否弃用
未弃用
函数参数
无
函数返回值
无
函数位置
File: wp-includes/theme.php.
函数源码
function header_image() {
$image = get_header_image();
if ( $image ) {
echo esc_url( $image );
}
}
源码链接
变更日志
Changelog| Version | Description |
|---|
| 2.1.0 | Introduced. |