diff --git a/src/wp-admin/includes/class-wp-theme-install-list-table.php b/src/wp-admin/includes/class-wp-theme-install-list-table.php
index d02d56b5b8..02ab9c226b 100644
a
|
b
|
class WP_Theme_Install_List_Table extends WP_Themes_List_Table { |
230 | 230 | * @param object $theme { |
231 | 231 | * An object that contains theme data returned by the WordPress.org API. |
232 | 232 | * |
233 | | * @type string $name Theme name, e.g. 'Twenty Seventeen'. |
234 | | * @type string $slug Theme slug, e.g. 'twentyseventeen'. |
| 233 | * @type string $name Theme name, e.g. 'Twenty Nineteen'. |
| 234 | * @type string $slug Theme slug, e.g. 'twentynineteen'. |
235 | 235 | * @type string $version Theme version, e.g. '1.1'. |
236 | 236 | * @type string $author Theme author username, e.g. 'melchoyce'. |
237 | | * @type string $preview_url Preview URL, e.g. 'http://2017.wordpress.net/'. |
238 | | * @type string $screenshot_url Screenshot URL, e.g. 'https://wordpress.org/themes/twentyseventeen/'. |
| 237 | * @type string $preview_url Preview URL, e.g. 'http://2019.wordpress.net/'. |
| 238 | * @type string $screenshot_url Screenshot URL, e.g. 'https://wordpress.org/themes/twentynineteen/'. |
239 | 239 | * @type float $rating Rating score. |
240 | 240 | * @type int $num_ratings The number of ratings. |
241 | | * @type string $homepage Theme homepage, e.g. 'https://wordpress.org/themes/twentyseventeen/'. |
| 241 | * @type string $homepage Theme homepage, e.g. 'https://wordpress.org/themes/twentynineteen/'. |
242 | 242 | * @type string $description Theme description. |
243 | 243 | * @type string $download_link Theme ZIP download URL. |
244 | 244 | * } |
diff --git a/src/wp-admin/includes/upgrade.php b/src/wp-admin/includes/upgrade.php
index 9dab2e9cdb..011884b9fd 100644
a
|
b
|
Commenter avatars come from <a href="https://gravatar.com">Gravatar</a>.' ); |
330 | 330 | update_option( 'widget_archives', array ( 2 => array ( 'title' => '', 'count' => 0, 'dropdown' => 0 ), '_multiwidget' => 1 ) ); |
331 | 331 | update_option( 'widget_categories', array ( 2 => array ( 'title' => '', 'count' => 0, 'hierarchical' => 0, 'dropdown' => 0 ), '_multiwidget' => 1 ) ); |
332 | 332 | update_option( 'widget_meta', array ( 2 => array ( 'title' => '' ), '_multiwidget' => 1 ) ); |
333 | | 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 ) ); |
| 333 | 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 ) ); |
334 | 334 | if ( ! is_multisite() ) |
335 | 335 | update_user_meta( $user_id, 'show_welcome_panel', 1 ); |
336 | 336 | elseif ( ! is_super_admin( $user_id ) && ! metadata_exists( 'user', $user_id, 'show_welcome_panel' ) ) |
diff --git a/src/wp-admin/nav-menus.php b/src/wp-admin/nav-menus.php
index 185d54b1b7..1bc1c2e530 100644
a
|
b
|
if ( ! current_theme_supports( 'menus' ) && ! $num_locations ) |
519 | 519 | if ( ! $locations_screen ) : // Main tab |
520 | 520 | $overview = '<p>' . __( 'This screen is used for managing your navigation menus.' ) . '</p>'; |
521 | 521 | /* translators: 1: Widgets admin screen URL, 2 and 3: The name of the default themes */ |
522 | | $overview .= '<p>' . sprintf( __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the navigation 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 Sixteen', 'Twenty Seventeen' ) . '</p>'; |
| 522 | $overview .= '<p>' . sprintf( __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the navigation 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 Seventeen', 'Twenty Nineteen' ) . '</p>'; |
523 | 523 | $overview .= '<p>' . __( 'From this screen you can:' ) . '</p>'; |
524 | 524 | $overview .= '<ul><li>' . __( 'Create, edit, and delete menus' ) . '</li>'; |
525 | 525 | $overview .= '<li>' . __( 'Add, organize, and modify individual menu items' ) . '</li></ul>'; |