Make WordPress Core

Ticket #54707: 54707.diff

File 54707.diff, 1004 bytes (added by jdy68, 4 years ago)
  • src/wp-admin/themes.php

    diff --git a/src/wp-admin/themes.php b/src/wp-admin/themes.php
    index cc18806d28..ca3d16278e 100644
    a b if ( current_user_can( 'switch_themes' ) && isset( $_GET['action'] ) ) { 
    124124}
    125125
    126126// Used in the HTML title tag.
    127 $title       = __( 'Manage Themes' );
     127$title       = __( 'Themes' );
    128128$parent_file = 'themes.php';
    129129
    130130// Help tab: Overview.
    if ( current_user_can( 'update_themes' ) && wp_is_auto_update_enabled_for_type( 
    205205get_current_screen()->set_help_sidebar(
    206206        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    207207        '<p>' . __( '<a href="https://wordpress.org/support/article/using-themes/">Documentation on Using Themes</a>' ) . '</p>' .
     208        '<p>' . __( '<a href="https://wordpress.org/support/article/appearance-themes-screen/">Documentation on Managing Themes</a>' ) . '</p>' .
    208209        $help_sidebar_autoupdates .
    209210        '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
    210211);