class-wp-customize-filter-setting.php 588 B

1234567891011121314151617181920212223242526272829
  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. * A setting that is used to filter a value, but will not save the results.
  11. *
  12. * Results should be properly handled using another setting or callback.
  13. *
  14. * @since 3.4.0
  15. *
  16. * @see WP_Customize_Setting
  17. */
  18. class WP_Customize_Filter_Setting extends WP_Customize_Setting {
  19. /**
  20. * Saves the value of the setting, using the related API.
  21. *
  22. * @since 3.4.0
  23. *
  24. * @param mixed $value The value to update.
  25. */
  26. public function update( $value ) {}
  27. }