Displays header image URL.
Source
function header_image() {
$image = get_header_image();
if ( $image ) {
echo esc_url( $image );
}
}
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |
CARVIEW |
Displays header image URL.
function header_image() {
$image = get_header_image();
if ( $image ) {
echo esc_url( $image );
}
}
Uses | Description |
---|---|
get_header_image()wp-includes/theme.php | Retrieves header image for custom header. |
esc_url()wp-includes/formatting.php | Checks and cleans a URL. |
Version | Description |
---|---|
2.1.0 | Introduced. |
You must log in before being able to contribute a note or feedback.
Related:
has_header_image
get_header_image