Changeset 39600 for trunk/src/wp-includes/class-wp-customize-setting.php
- Timestamp:
- 12/14/2016 04:17:38 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-setting.php
r39318 r39600 481 481 } 482 482 483 $id_base = $this->id_data['base']; 484 483 485 /** 484 486 * Fires when the WP_Customize_Setting::save() method is called. 485 487 * 486 * The dynamic portion of the hook name, `$ this->id_data['base']` refers to488 * The dynamic portion of the hook name, `$id_base` refers to 487 489 * the base slug of the setting name. 488 490 * … … 491 493 * @param WP_Customize_Setting $this WP_Customize_Setting instance. 492 494 */ 493 do_action( 'customize_save_' . $this->id_data['base'], $this );495 do_action( "customize_save_{$id_base}", $this ); 494 496 495 497 $this->update( $value );
Note: See TracChangeset
for help on using the changeset viewer.