Changeset 37350 for trunk/src/wp-includes/class-wp-customize-setting.php
- Timestamp:
- 05/02/2016 10:41:36 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-setting.php
r37342 r37350 658 658 * 659 659 * @since 3.4.0 660 * @since 4.6.0 Added the `$this` setting instance as the second param. 660 661 * 661 * @param mixed $default The setting default value. Default empty. 662 * @param mixed $default The setting default value. Default empty. 663 * @param WP_Customize_Setting $this The setting instance. 662 664 */ 663 $value = apply_filters( "customize_value_{$id_base}", $value );664 } else 665 $value = apply_filters( "customize_value_{$id_base}", $value, $this ); 666 } elseif ( $this->is_multidimensional_aggregated ) { 665 667 $root_value = self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['root_value']; 666 668 $value = $this->multidimensional_get( $root_value, $this->id_data['keys'], $this->default );
Note: See TracChangeset
for help on using the changeset viewer.