wp/wp-includes/class-wp-customize-section.php
changeset 19 3d72ae0968f4
parent 16 a86126ab1dd4
child 21 48c4eec2b7e6
equal deleted inserted replaced
18:be944660c56a 19:3d72ae0968f4
    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 		 *