Ticket #25702: 25702.2.diff
File 25702.2.diff, 3.9 KB (added by , 11 years ago) |
---|
-
wp-admin/includes/update-core.php
589 589 'themes/twentyeleven/' => '3.2', 590 590 'themes/twentytwelve/' => '3.5', 591 591 'themes/twentythirteen/' => '3.6', 592 'themes/twentyfourteen/' => '3.8', 592 593 ); 593 594 594 595 /** -
wp-admin/includes/upgrade.php
218 218 update_option( 'widget_archives', array ( 2 => array ( 'title' => '', 'count' => 0, 'dropdown' => 0 ), '_multiwidget' => 1 ) ); 219 219 update_option( 'widget_categories', array ( 2 => array ( 'title' => '', 'count' => 0, 'hierarchical' => 0, 'dropdown' => 0 ), '_multiwidget' => 1 ) ); 220 220 update_option( 'widget_meta', array ( 2 => array ( 'title' => '' ), '_multiwidget' => 1 ) ); 221 update_option( 'sidebars_widgets', array ( 'wp_inactive_widgets' => array (), 'sidebar-1' => array ( 0 => 'search-2', 1 => 'recent-posts-2', 2 => 'recent-comments-2', 3 => 'archives-2', 4 => 'categories-2', 5 => 'meta-2', ), 'sidebar-2' => array (),'array_version' => 3 ) );221 update_option( 'sidebars_widgets', array( 'wp_inactive_widgets' => array (), 'sidebar-1' => array( 0 => 'search-2', 1 => 'recent-posts-2', 2 => 'recent-comments-2', 3 => 'archives-2', 4 => 'categories-2', 5 => 'meta-2', ), 'sidebar-2' => array (), 'sidebar-3' => array(), 'array_version' => 3 ) ); 222 222 223 223 if ( ! is_multisite() ) 224 224 update_user_meta( $user_id, 'show_welcome_panel', 1 ); -
wp-admin/nav-menus.php
476 476 477 477 if ( ! $locations_screen ) : // Main tab 478 478 $overview = '<p>' . __( 'This screen is used for managing your custom navigation menus.' ) . '</p>'; 479 $overview .= '<p>' . sprintf( __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Custom Menu” widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the custom menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side.' ), admin_url( 'widgets.php' ), 'Twenty Thirteen', 'Twenty Twelve' ) . '</p>';479 $overview .= '<p>' . sprintf( __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Custom Menu” widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the custom menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side.' ), admin_url( 'widgets.php' ), 'Twenty Fourteen', 'Twenty Thirteen' ) . '</p>'; 480 480 $overview .= '<p>' . __( 'From this screen you can:' ) . '</p>'; 481 481 $overview .= '<ul><li>' . __( 'Create, edit, and delete menus' ) . '</li>'; 482 482 $overview .= '<li>' . __( 'Add, organize, and modify individual menu items' ) . '</li></ul>'; -
wp-includes/class-wp-theme.php
43 43 'twentyeleven' => 'Twenty Eleven', 44 44 'twentytwelve' => 'Twenty Twelve', 45 45 'twentythirteen' => 'Twenty Thirteen', 46 'twentyfourteen' => 'Twenty Fourteen', 46 47 ); 47 48 48 49 /** -
wp-includes/default-constants.php
311 311 * @since 3.0.0 312 312 */ 313 313 if ( !defined('WP_DEFAULT_THEME') ) 314 define( 'WP_DEFAULT_THEME', 'twenty thirteen' );314 define( 'WP_DEFAULT_THEME', 'twentyfourteen' ); 315 315 316 316 }