]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/customize/class-wp-customize-filter-setting.php
WordPress 4.4
[autoinstalls/wordpress.git] / wp-includes / customize / class-wp-customize-filter-setting.php
1 <?php
2 /**
3  * Customize API: WP_Customize_Filter_Setting class
4  *
5  * @package WordPress
6  * @subpackage Customize
7  * @since 4.4.0
8  */
9
10 /**
11  * A setting that is used to filter a value, but will not save the results.
12  *
13  * Results should be properly handled using another setting or callback.
14  *
15  * @since 3.4.0
16  *
17  * @see WP_Customize_Setting
18  */
19 class WP_Customize_Filter_Setting extends WP_Customize_Setting {
20
21         /**
22          * @since 3.4.0
23          */
24         public function update( $value ) {}
25 }