get_random_header_image()

Gets random header image URL from registered images in theme.


Return

(string) Path to header image.


Source

File: wp-includes/theme.php

function get_random_header_image() {
	$random_image = _get_random_header_data();
	if ( empty( $random_image->url ) )
		return '';
	return $random_image->url;
}


Changelog

Changelog
Version Description
3.2.0 Introduced.