Ticket #29165: 29165.3.diff
File 29165.3.diff, 857 bytes (added by , 9 years ago) |
---|
-
src/wp-includes/class-wp-customize-setting.php
134 134 * @param WP_Customize_Setting $this WP_Customize_Setting instance. 135 135 */ 136 136 do_action( 'customize_preview_' . $this->id, $this ); 137 138 /** 139 * Fires when the {@see WP_Customize_Setting::preview()} method is called for settings 140 * not handled as theme_mods or options. 141 * 142 * The dynamic portion of the hook name, $this->type, refers to the setting type. 143 * 144 * @since 4.1.0 145 * 146 * @param WP_Customize_Setting $this WP_Customize_Setting instance. 147 */ 148 do_action( "customize_preview_{$this->type}", $this ); 137 149 } 138 150 } 139 151