wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



register_default_headers › WordPress Function

Da3.0.0
Deprecaton/a
register_default_headers ( $headers )
Parametri:
  • (array) $headers Array of headers keyed by a string ID. The IDs point to arrays containing 'url', 'thumbnail_url', and 'description' keys.
    Richiesto:
Definito a:
Codex:

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



Sorgenti

function register_default_headers( $headers ) {
	global $_wp_default_headers;

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