wpseek.com
A WordPress-centric search engine for devs and theme authors



header_image › WordPress Function

Since2.1.0
Deprecatedn/a
header_image ( No parameters )
Defined at:
Codex:

Displays header image URL.



Source

function header_image() {
	$image = get_header_image();

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