Changeset 29900
- Timestamp:
- 10/15/2014 02:34:44 PM (11 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update-core.php
r29847 r29900 723 723 'themes/twentythirteen/' => '3.6', 724 724 'themes/twentyfourteen/' => '3.8', 725 'themes/twentyfifteen/' => '4.1', 725 726 ); 726 727 -
trunk/src/wp-admin/includes/upgrade.php
r29807 r29900 235 235 update_option( 'widget_categories', array ( 2 => array ( 'title' => '', 'count' => 0, 'hierarchical' => 0, 'dropdown' => 0 ), '_multiwidget' => 1 ) ); 236 236 update_option( 'widget_meta', array ( 2 => array ( 'title' => '' ), '_multiwidget' => 1 ) ); 237 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 ) );237 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', ), 'array_version' => 3 ) ); 238 238 239 239 if ( ! is_multisite() ) -
trunk/src/wp-admin/nav-menus.php
r29792 r29900 493 493 if ( ! $locations_screen ) : // Main tab 494 494 $overview = '<p>' . __( 'This screen is used for managing your custom navigation menus.' ) . '</p>'; 495 $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 F ourteen', 'Twenty Thirteen' ) . '</p>';495 $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 Fifteen', 'Twenty Fourteen' ) . '</p>'; 496 496 $overview .= '<p>' . __( 'From this screen you can:' ) . '</p>'; 497 497 $overview .= '<ul><li>' . __( 'Create, edit, and delete menus' ) . '</li>';
Note: See TracChangeset
for help on using the changeset viewer.