2019-11-02 10:38:58 +01:00
|
|
|
<?php
|
|
|
|
|
/**
|
2019-11-15 22:59:44 +01:00
|
|
|
* Custom background script.
|
2019-11-02 10:38:58 +01:00
|
|
|
*
|
2019-11-15 22:59:44 +01:00
|
|
|
* This file is deprecated, use 'wp-admin/includes/class-custom-background.php' instead.
|
|
|
|
|
*
|
|
|
|
|
* @deprecated 5.3.0
|
2019-11-02 10:38:58 +01:00
|
|
|
* @package WordPress
|
|
|
|
|
* @subpackage Administration
|
|
|
|
|
*/
|
|
|
|
|
|
2025-04-25 12:30:07 +02:00
|
|
|
// Don't load directly.
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
|
die( '-1' );
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-15 22:59:44 +01:00
|
|
|
_deprecated_file( basename( __FILE__ ), '5.3.0', 'wp-admin/includes/class-custom-background.php' );
|
2019-11-02 10:38:58 +01:00
|
|
|
|
2019-11-15 22:59:44 +01:00
|
|
|
/** Custom_Background class */
|
2020-05-06 17:23:38 +02:00
|
|
|
require_once ABSPATH . 'wp-admin/includes/class-custom-background.php';
|