Changeset 27431
- Timestamp:
- 03/06/2014 01:50:32 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r27419 r27431 180 180 return; 181 181 182 /** 183 * Fires just before the current Customizer control is rendered. 184 * 185 * @since 3.4.0 186 * 187 * @param WP_Customize_Control $this WP_Customize_Control instance. 188 */ 182 189 do_action( 'customize_render_control', $this ); 190 191 /** 192 * Fires just before a specific Customizer control is rendered. 193 * 194 * The dynamic portion of the hook name, $this->id, refers to 195 * the control ID. 196 * 197 * @since 3.4.0 198 * 199 * @param WP_Customize_Control $this WP_Customize_Control instance. 200 */ 183 201 do_action( 'customize_render_control_' . $this->id, $this ); 184 202
Note: See TracChangeset
for help on using the changeset viewer.