8416a2b410
This renames the file containing the `Custom_Image_Header` class to conform to the coding standards. This commit also includes: - A new `custom-header.php` that includes the new file, for anyone that may've been including the file directly. - Replaces references to the old filename with the new filename. See #47632. git-svn-id: https://develop.svn.wordpress.org/trunk@45654 602fd350-edb4-49c9-b593-d223f7449a82
16 lines
429 B
PHP
16 lines
429 B
PHP
<?php
|
|
/**
|
|
* Custom header image script.
|
|
*
|
|
* This file is deprecated, use 'wp-admin/includes/class-custom-image-header.php' instead.
|
|
*
|
|
* @deprecated 5.3.0
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
_deprecated_file( basename( __FILE__ ), '5.3.0', 'wp-admin/includes/class-custom-image-header.php' );
|
|
|
|
/** Custom_Image_Header class */
|
|
require_once( ABSPATH . 'wp-admin/includes/class-custom-image-header.php' );
|