register_default_headers()
Registers a selection of default headers to be displayed by the custom header admin UI.
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
register_default_headers( $headers );
- $headers(массив) (обязательный)
- Array of headers keyed by a string ID. The IDs point to arrays containing 'url', 'thumbnail_url', and 'description' keys.
Заметки
- Global. Массив. $_wp_default_headers
Список изменений
С версии 3.0.0 | Введена. |
Код register_default_headers() register default headers WP 6.3.1
function register_default_headers( $headers ) { global $_wp_default_headers; $_wp_default_headers = array_merge( (array) $_wp_default_headers, (array) $headers ); }