Changeset 48095
- Timestamp:
- 06/19/2020 09:12:34 PM (4 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/themes.php
r48062 r48095 304 304 305 305 $help_sidebar_autoupdates = ''; 306 306 307 if ( current_user_can( 'update_themes' ) && wp_is_auto_update_enabled_for_type( 'theme' ) ) { 307 308 get_current_screen()->add_help_tab( … … 321 322 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 322 323 '<p>' . __( '<a href="https://codex.wordpress.org/Network_Admin_Themes_Screen">Documentation on Network Themes</a>' ) . '</p>' . 323 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'.324 $help_sidebar_autoupdates324 $help_sidebar_autoupdates . 325 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 325 326 ); 326 327 -
trunk/src/wp-admin/plugins.php
r48062 r48095 567 567 568 568 $help_sidebar_autoupdates = ''; 569 569 570 if ( current_user_can( 'update_plugins' ) && wp_is_auto_update_enabled_for_type( 'plugin' ) ) { 570 571 get_current_screen()->add_help_tab( … … 584 585 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 585 586 '<p>' . __( '<a href="https://wordpress.org/support/article/managing-plugins/">Documentation on Managing Plugins</a>' ) . '</p>' . 586 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'.587 $help_sidebar_autoupdates587 $help_sidebar_autoupdates . 588 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 588 589 ); 589 590 -
trunk/src/wp-admin/themes.php
r48092 r48095 183 183 } // End if 'edit_theme_options' && 'customize'. 184 184 185 $help_sidebar_autoupdates = ''; 186 185 187 // Help tab: Auto-updates. 186 $help_sidebar_autoupdates = '';187 188 if ( current_user_can( 'update_themes' ) && wp_is_auto_update_enabled_for_type( 'theme' ) ) { 188 189 $help_tab_autoupdates = … … 204 205 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 205 206 '<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_autoupdates207 $help_sidebar_autoupdates . 208 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 208 209 ); 209 210 -
trunk/src/wp-admin/update-core.php
r48062 r48095 747 747 748 748 $help_sidebar_autoupdates = ''; 749 749 750 if ( ( current_user_can( 'update_themes' ) && wp_is_auto_update_enabled_for_type( 'theme' ) ) || ( current_user_can( 'update_plugins' ) && wp_is_auto_update_enabled_for_type( 'plugin' ) ) ) { 750 751 $help_tab_autoupdates = '<p>' . __( 'Auto-updates can be enabled or disabled for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.' ) . '</p>'; … … 765 766 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 766 767 '<p>' . __( '<a href="https://wordpress.org/support/article/dashboard-updates-screen/">Documentation on Updating WordPress</a>' ) . '</p>' . 767 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'.768 $help_sidebar_autoupdates768 $help_sidebar_autoupdates . 769 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 769 770 ); 770 771
Note: See TracChangeset
for help on using the changeset viewer.