| [ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Customize API: WP_Customize_Background_Image_Setting class 4 * 5 * @package WordPress 6 * @subpackage Customize 7 * @since 4.4.0 8 */ 9 10 /** 11 * Customizer Background Image Setting class. 12 * 13 * @since 3.4.0 14 * 15 * @see WP_Customize_Setting 16 */ 17 final class WP_Customize_Background_Image_Setting extends WP_Customize_Setting { 18 19 /** 20 * Unique string identifier for the setting. 21 * 22 * @since 3.4.0 23 * @var string 24 */ 25 public $id = 'background_image_thumb'; 26 27 /** 28 * @since 3.4.0 29 * @since 7.0.0 Return type updated from void to true for compatibility with base class. 30 * 31 * @param mixed $value The value to update. Not used. 32 * @return true Always returns true. 33 */ 34 public function update( $value ) { 35 remove_theme_mod( 'background_image_thumb' ); 36 return true; 37 } 38 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated : Mon Jun 15 08:20:09 2026 | Cross-referenced by PHPXref |