header_image()
Displays header image URL.
Source
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. |
Displays header image URL.
File: wp-includes/theme.php
function header_image() {
$image = get_header_image();
if ( $image ) {
echo esc_url( $image );
}
}
Version | Description |
---|---|
2.1.0 | Introduced. |