2010-02-09 21:37:12 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2019-07-19 06:02:55 +02:00
|
|
|
* Custom background script.
|
2010-02-09 21:37:12 +01:00
|
|
|
*
|
2019-07-19 06:02:55 +02:00
|
|
|
* This file is deprecated, use 'wp-admin/includes/class-custom-background.php' instead.
|
|
|
|
*
|
|
|
|
* @deprecated 5.3.0
|
2010-02-09 21:37:12 +01:00
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2019-07-19 06:02:55 +02:00
|
|
|
_deprecated_file( basename( __FILE__ ), '5.3.0', 'wp-admin/includes/class-custom-background.php' );
|
2012-04-05 02:20:28 +02:00
|
|
|
|
2019-07-19 06:02:55 +02:00
|
|
|
/** Custom_Background class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . 'wp-admin/includes/class-custom-background.php';
|