You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

31 lines
607 B

  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. * @access public
  24. *
  25. * @param mixed $value The value to update.
  26. */
  27. public function update( $value ) {}
  28. }