Changeset 22359
- Timestamp:
- 11/02/2012 04:52:53 PM (11 years ago)
- Location:
- trunk/wp-content/themes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyeleven/functions.php
r22213 r22359 376 376 */ 377 377 function twentyeleven_page_menu_args( $args ) { 378 $args['show_home'] = true; 378 if ( ! isset( $args['show_home'] ) ) 379 $args['show_home'] = true; 379 380 return $args; 380 381 } -
trunk/wp-content/themes/twentyten/functions.php
r21490 r22359 225 225 */ 226 226 function twentyten_page_menu_args( $args ) { 227 $args['show_home'] = true; 227 if ( ! isset( $args['show_home'] ) ) 228 $args['show_home'] = true; 228 229 return $args; 229 230 } -
trunk/wp-content/themes/twentytwelve/functions.php
r22318 r22359 191 191 */ 192 192 function twentytwelve_page_menu_args( $args ) { 193 $args['show_home'] = true; 193 if ( ! isset( $args['show_home'] ) ) 194 $args['show_home'] = true; 194 195 return $args; 195 196 }
Note: See TracChangeset
for help on using the changeset viewer.