equal
deleted
inserted
replaced
54 |
54 |
55 /** |
55 /** |
56 * Priority of the section which informs load order of sections. |
56 * Priority of the section which informs load order of sections. |
57 * |
57 * |
58 * @since 3.4.0 |
58 * @since 3.4.0 |
59 * @var integer |
59 * @var int |
60 */ |
60 */ |
61 public $priority = 160; |
61 public $priority = 160; |
62 |
62 |
63 /** |
63 /** |
64 * Panel in which to show the section, making it a sub-section. |
64 * Panel in which to show the section, making it a sub-section. |
296 /** |
296 /** |
297 * Fires before rendering a Customizer section. |
297 * Fires before rendering a Customizer section. |
298 * |
298 * |
299 * @since 3.4.0 |
299 * @since 3.4.0 |
300 * |
300 * |
301 * @param WP_Customize_Section $this WP_Customize_Section instance. |
301 * @param WP_Customize_Section $section WP_Customize_Section instance. |
302 */ |
302 */ |
303 do_action( 'customize_render_section', $this ); |
303 do_action( 'customize_render_section', $this ); |
304 /** |
304 /** |
305 * Fires before rendering a specific Customizer section. |
305 * Fires before rendering a specific Customizer section. |
306 * |
306 * |