register_default_headers( array $headers )

Register a selection of default headers to be displayed by the custom header admin UI.


Parameters

$headers

(array) (Required) Array of headers keyed by a string id. The ids point to arrays containing 'url', 'thumbnail_url', and 'description' keys.


Source

File: wp-includes/theme.php

function register_default_headers( $headers ) {
	global $_wp_default_headers;

	$_wp_default_headers = array_merge( (array) $_wp_default_headers, (array) $headers );
}

Changelog

Changelog
Version Description
WP-3.0.0 Introduced.