diff -r 34716fd837a4 -r be944660c56a wp/wp-admin/theme-install.php --- a/wp/wp-admin/theme-install.php Tue Dec 15 15:52:01 2020 +0100 +++ b/wp/wp-admin/theme-install.php Wed Sep 21 18:19:35 2022 +0200 @@ -84,8 +84,16 @@ * Fires before each of the tabs are rendered on the Install Themes page. * * The dynamic portion of the hook name, `$tab`, refers to the current - * theme installation tab. Possible values are 'dashboard', 'search', 'upload', - * 'featured', 'new', or 'updated'. + * theme installation tab. + * + * Possible hook names include: + * + * - `install_themes_pre_dashboard` + * - `install_themes_pre_featured` + * - `install_themes_pre_new` + * - `install_themes_pre_search` + * - `install_themes_pre_updated` + * - `install_themes_pre_upload` * * @since 2.8.0 */ @@ -99,7 +107,7 @@ __( 'https://wordpress.org/themes/' ) ) . '
' . '' . __( 'You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.' ) . ' ' . __( 'The search results will be updated as you type.' ) . '
' . - '' . __( 'Alternately, you can browse the themes that are Featured, Popular, or Latest. When you find a theme you like, you can preview it or install it.' ) . '
' . + '' . __( 'Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it.' ) . '
' . '' . sprintf( /* translators: %s: /wp-content/themes */ __( 'You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.' ), @@ -173,7 +181,6 @@