Changeset 49946 for trunk/src/wp-includes/class-wp-customize-setting.php
- Timestamp:
- 01/08/2021 02:28:46 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-setting.php
r49935 r49946 607 607 * @param WP_Error $validity Filtered from `true` to `WP_Error` when invalid. 608 608 * @param mixed $value Value of the setting. 609 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.609 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 610 610 */ 611 611 $validity = apply_filters( "customize_validate_{$this->id}", $validity, $value, $this ); … … 763 763 * 764 764 * @param mixed $default The setting default value. Default empty. 765 * @param WP_Customize_Setting $ thisThe setting instance.765 * @param WP_Customize_Setting $setting The setting instance. 766 766 */ 767 767 $value = apply_filters( "customize_value_{$id_base}", $value, $this ); … … 796 796 * @since 3.4.0 797 797 * 798 * @param mixed $value The setting value.799 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.798 * @param mixed $value The setting value. 799 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 800 800 */ 801 801 $value = apply_filters( "customize_sanitize_js_{$this->id}", $this->value(), $this );
Note: See TracChangeset
for help on using the changeset viewer.