get_random_header_image()

Get random header image url from registered images in theme.


Description Description


Return Return

(string) Path to header image


Top ↑

Source 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;
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.