Changeset 14500 for trunk/wp-content/themes/twentyten/functions.php
- Timestamp:
- 05/07/2010 06:11:58 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/functions.php
r14469 r14500 207 207 if ( ! function_exists( 'twentyten_page_menu_args' ) ) : 208 208 /** 209 * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link 209 * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link. 210 210 */ 211 211 function twentyten_page_menu_args($args) { 212 $args = array( 213 'sort_column' => 'menu_order, post_title', 214 'menu_class' => 'menu', 215 'echo' => true, 216 'show_home' => true 217 ); 212 $args['show_home'] = true; 218 213 return $args; 219 214 }
Note: See TracChangeset
for help on using the changeset viewer.