diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 07:56:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 07:56:49 +0000 |
commit | a415c29efee45520ae252d2aa28f1083a521cd7b (patch) | |
tree | f4ade4b6668ecc0765de7e1424f7c1427ad433ff /wp-includes/customize/class-wp-customize-background-image-setting.php | |
parent | Initial commit. (diff) | |
download | wordpress-a415c29efee45520ae252d2aa28f1083a521cd7b.tar.xz wordpress-a415c29efee45520ae252d2aa28f1083a521cd7b.zip |
Adding upstream version 6.4.3+dfsg1.upstream/6.4.3+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'wp-includes/customize/class-wp-customize-background-image-setting.php')
-rw-r--r-- | wp-includes/customize/class-wp-customize-background-image-setting.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/wp-includes/customize/class-wp-customize-background-image-setting.php b/wp-includes/customize/class-wp-customize-background-image-setting.php new file mode 100644 index 0000000..f56810e --- /dev/null +++ b/wp-includes/customize/class-wp-customize-background-image-setting.php @@ -0,0 +1,35 @@ +<?php +/** + * Customize API: WP_Customize_Background_Image_Setting class + * + * @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 { + + /** + * Unique string identifier for the setting. + * + * @since 3.4.0 + * @var string + */ + public $id = 'background_image_thumb'; + + /** + * @since 3.4.0 + * + * @param mixed $value The value to update. Not used. + */ + public function update( $value ) { + remove_theme_mod( 'background_image_thumb' ); + } +} |