mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-10 10:27:57 +01:00
21d74f5b1d
See #34432. Built from https://develop.svn.wordpress.org/trunk@35383 git-svn-id: http://core.svn.wordpress.org/trunk@35347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
29 lines
485 B
PHP
29 lines
485 B
PHP
<?php
|
|
/**
|
|
* WordPress Customize Setting classes
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Customize
|
|
* @since 4.4.0
|
|
*/
|
|
|
|
/**
|
|
* Customizer Background Image Setting class.
|
|
*
|
|
* @since 3.4.0
|
|
*
|
|
* @see WP_Customize_Setting
|
|
*/
|
|
final class WP_Customize_Background_Image_Setting extends WP_Customize_Setting {
|
|
public $id = 'background_image_thumb';
|
|
|
|
/**
|
|
* @since 3.4.0
|
|
*
|
|
* @param $value
|
|
*/
|
|
public function update( $value ) {
|
|
remove_theme_mod( 'background_image_thumb' );
|
|
}
|
|
}
|