diff --git a/wp-admin/includes/class-wp-plugin-install-list-table.php b/wp-admin/includes/class-wp-plugin-install-list-table.php index 71337eb99..a390e7193 100644 --- a/wp-admin/includes/class-wp-plugin-install-list-table.php +++ b/wp-admin/includes/class-wp-plugin-install-list-table.php @@ -33,7 +33,6 @@ class WP_Plugin_Install_List_Table extends WP_List_Table { $tabs['featured'] = _x( 'Featured','Plugin Installer' ); $tabs['popular'] = _x( 'Popular','Plugin Installer' ); $tabs['new'] = _x( 'Newest','Plugin Installer' ); - $tabs['updated'] = _x( 'Recently Updated','Plugin Installer' ); $nonmenu_tabs = array( 'plugin-information' ); //Valid actions to perform which do not have a Menu item. @@ -69,7 +68,6 @@ class WP_Plugin_Install_List_Table extends WP_List_Table { case 'featured': case 'popular': case 'new': - case 'updated': $args['browse'] = $tab; break; diff --git a/wp-admin/includes/plugin-install.php b/wp-admin/includes/plugin-install.php index 33b1eda0b..d50b4bfbf 100644 --- a/wp-admin/includes/plugin-install.php +++ b/wp-admin/includes/plugin-install.php @@ -167,7 +167,6 @@ add_action('install_plugins_search', 'display_plugins_table'); add_action('install_plugins_featured', 'display_plugins_table'); add_action('install_plugins_popular', 'display_plugins_table'); add_action('install_plugins_new', 'display_plugins_table'); -add_action('install_plugins_updated', 'display_plugins_table'); /** * Determine the status we can perform on a plugin. diff --git a/wp-admin/plugin-install.php b/wp-admin/plugin-install.php index 87f563b09..374497bb6 100644 --- a/wp-admin/plugin-install.php +++ b/wp-admin/plugin-install.php @@ -46,7 +46,7 @@ get_current_screen()->add_help_tab( array( 'title' => __('Adding Plugins'), 'content' => '

' . __('If you know what you’re looking for, Search is your best bet. The Search screen has options to search the WordPress.org Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting a popular tags. Tags in larger type mean more plugins have been labeled with that tag.') . '

' . - '

' . __('If you just want to get an idea of what’s available, you can browse Featured, Popular, Newest, and Recently Updated plugins by using the links in the upper left of the screen. These sections rotate regularly.') . '

' . + '

' . __('If you just want to get an idea of what’s available, you can browse Featured, Popular, and Newest plugins by using the links in the upper left of the screen. These sections rotate regularly.') . '

' . '

' . __('If you want to install a plugin that you’ve downloaded elsewhere, click the Upload in the upper left. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.') . '

' ) );