- Timestamp:
- 08/29/2016 08:41:42 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r38411 r38434 31 31 * @since 2.8.0 $name parameter added. 32 32 * 33 * @param string $name Name of the specific header file to use.33 * @param string|null $name Name of the specific header file to use. null for the default header. 34 34 */ 35 35 do_action( 'get_header', $name ); … … 70 70 * @since 2.8.0 $name parameter added. 71 71 * 72 * @param string $name Name of the specific footer file to use.72 * @param string|null $name Name of the specific footer file to use. null for the default footer. 73 73 */ 74 74 do_action( 'get_footer', $name ); … … 109 109 * @since 2.8.0 $name parameter added. 110 110 * 111 * @param string $name Name of the specific sidebar file to use.111 * @param string|null $name Name of the specific sidebar file to use. null for the default sidebar. 112 112 */ 113 113 do_action( 'get_sidebar', $name ); … … 153 153 * @since 3.0.0 154 154 * 155 * @param string $slug The slug name for the generic template.156 * @param string $name The name of the specialized template.155 * @param string $slug The slug name for the generic template. 156 * @param string|null $name The name of the specialized template. 157 157 */ 158 158 do_action( "get_template_part_{$slug}", $slug, $name );
Note: See TracChangeset
for help on using the changeset viewer.