header_image() – Displays header image URL.

You appear to be a bot. Output may be restricted

Description

Displays header image URL.

Usage

header_image();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/theme.php
Lines:

1 to 7 of 7
function header_image() {
  $image = get_header_image();

  if ( $image ) {
    echo esc_url( $image );
  }
}
 

 View on GitHub View on Trac