Make WordPress Core


Ignore:
Timestamp:
06/19/2020 09:12:34 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Help/About: Move "Learn more: Auto-updates documentation" link about "Support", for consistency with other screens.

Follow-up to [48062].

See #50215.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/themes.php

    r48092 r48095  
    183183} // End if 'edit_theme_options' && 'customize'.
    184184
     185$help_sidebar_autoupdates = '';
     186
    185187// Help tab: Auto-updates.
    186 $help_sidebar_autoupdates = '';
    187188if ( current_user_can( 'update_themes' ) && wp_is_auto_update_enabled_for_type( 'theme' ) ) {
    188189    $help_tab_autoupdates =
     
    204205    '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    205206    '<p>' . __( '<a href="https://wordpress.org/support/article/using-themes/">Documentation on Using Themes</a>' ) . '</p>' .
    206     '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' .
    207     $help_sidebar_autoupdates
     207    $help_sidebar_autoupdates .
     208    '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
    208209);
    209210
Note: See TracChangeset for help on using the changeset viewer.