Make WordPress Core

Ticket #37941: 37941.diff

File 37941.diff, 71.9 KB (added by Presskopp, 7 years ago)
  • wp-admin/async-upload.php

     
    6060                case 3 :
    6161                        if ( $thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true ) )
    6262                                echo '<img class="pinkynail" src="' . esc_url( $thumb_url[0] ) . '" alt="" />';
    63                         echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '" target="_blank">' . _x( 'Edit', 'media item' ) . '</a>';
     63                        echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '" target="_blank" rel="noopener noreferrer">' . _x( 'Edit', 'media item' ) . '</a>';
    6464
    6565                        // Title shouldn't ever be empty, but use filename just in case.
    6666                        $file = get_attached_file( $post->ID );
  • wp-admin/comment.php

     
    4848
    4949        get_current_screen()->set_help_sidebar(
    5050        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    51         '<p>' . __( '<a href="https://codex.wordpress.org/Administration_Screens#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' .
    52         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     51        '<p>' . __( '<a href="https://codex.wordpress.org/Administration_Screens#Comments" target="_blank" rel="noopener noreferrer">Documentation on Comments</a>' ) . '</p>' .
     52        '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    5353        );
    5454
    5555        wp_enqueue_script('comment');
  • wp-admin/custom-background.php

     
    9797
    9898                get_current_screen()->set_help_sidebar(
    9999                        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    100                         '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Background_Screen" target="_blank">Documentation on Custom Background</a>' ) . '</p>' .
    101                         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     100                        '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Background_Screen" target="_blank" rel="noopener noreferrer">Documentation on Custom Background</a>' ) . '</p>' .
     101                        '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    102102                );
    103103
    104104                wp_enqueue_media();
  • wp-admin/custom-header.php

     
    124124
    125125                get_current_screen()->set_help_sidebar(
    126126                        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    127                         '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Header_Screen" target="_blank">Documentation on Custom Header</a>' ) . '</p>' .
    128                         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     127                        '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Header_Screen" target="_blank" rel="noopener noreferrer">Documentation on Custom Header</a>' ) . '</p>' .
     128                        '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    129129                );
    130130        }
    131131
  • wp-admin/edit-comments.php

     
    162162
    163163get_current_screen()->set_help_sidebar(
    164164        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    165         '<p>' . __( '<a href="https://codex.wordpress.org/Administration_Screens#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' .
    166         '<p>' . __( '<a href="https://codex.wordpress.org/Comment_Spam" target="_blank">Documentation on Comment Spam</a>' ) . '</p>' .
    167         '<p>' . __( '<a href="https://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">Documentation on Keyboard Shortcuts</a>' ) . '</p>' .
    168         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     165        '<p>' . __( '<a href="https://codex.wordpress.org/Administration_Screens#Comments" target="_blank" rel="noopener noreferrer">Documentation on Comments</a>' ) . '</p>' .
     166        '<p>' . __( '<a href="https://codex.wordpress.org/Comment_Spam" target="_blank" rel="noopener noreferrer">Documentation on Comment Spam</a>' ) . '</p>' .
     167        '<p>' . __( '<a href="https://codex.wordpress.org/Keyboard_Shortcuts" target="_blank" rel="noopener noreferrer">Documentation on Keyboard Shortcuts</a>' ) . '</p>' .
     168        '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    169169);
    170170
    171171get_current_screen()->set_screen_reader_content( array(
  • wp-admin/edit-form-advanced.php

     
    9292if ( $viewable ) {
    9393
    9494        // Preview post link.
    95         $preview_post_link_html = sprintf( ' <a target="_blank" href="%1$s">%2$s</a>',
     95        $preview_post_link_html = sprintf( ' <a target="_blank" rel="noopener noreferrer" href="%1$s">%2$s</a>',
    9696                esc_url( $preview_url ),
    9797                __( 'Preview post' )
    9898        );
    9999
    100100        // Scheduled post preview link.
    101         $scheduled_post_link_html = sprintf( ' <a target="_blank" href="%1$s">%2$s</a>',
     101        $scheduled_post_link_html = sprintf( ' <a target="_blank" rel="noopener noreferrer" href="%1$s">%2$s</a>',
    102102                esc_url( $permalink ),
    103103                __( 'Preview post' )
    104104        );
     
    110110        );
    111111
    112112        // Preview page link.
    113         $preview_page_link_html = sprintf( ' <a target="_blank" href="%1$s">%2$s</a>',
     113        $preview_page_link_html = sprintf( ' <a target="_blank" rel="noopener noreferrer" href="%1$s">%2$s</a>',
    114114                esc_url( $preview_url ),
    115115                __( 'Preview page' )
    116116        );
    117117
    118118        // Scheduled page preview link.
    119         $scheduled_page_link_html = sprintf( ' <a target="_blank" href="%1$s">%2$s</a>',
     119        $scheduled_page_link_html = sprintf( ' <a target="_blank" rel="noopener noreferrer" href="%1$s">%2$s</a>',
    120120                esc_url( $permalink ),
    121121                __( 'Preview page' )
    122122        );
     
    378378        get_current_screen()->set_help_sidebar(
    379379                        '<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'tools.php') . '</p>' .
    380380                        '<p><strong>' . __('For more information:') . '</strong></p>' .
    381                         '<p>' . __('<a href="https://codex.wordpress.org/Posts_Add_New_Screen" target="_blank">Documentation on Writing and Editing Posts</a>') . '</p>' .
    382                         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     381                        '<p>' . __('<a href="https://codex.wordpress.org/Posts_Add_New_Screen" target="_blank" rel="noopener noreferrer">Documentation on Writing and Editing Posts</a>') . '</p>' .
     382                        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    383383        );
    384384} elseif ( 'page' == $post_type ) {
    385385        $about_pages = '<p>' . __('Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the &#8220;Parent&#8221; of the other, creating a group of pages.') . '</p>' .
     
    393393
    394394        get_current_screen()->set_help_sidebar(
    395395                        '<p><strong>' . __('For more information:') . '</strong></p>' .
    396                         '<p>' . __('<a href="https://codex.wordpress.org/Pages_Add_New_Screen" target="_blank">Documentation on Adding New Pages</a>') . '</p>' .
    397                         '<p>' . __('<a href="https://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank">Documentation on Editing Pages</a>') . '</p>' .
    398                         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     396                        '<p>' . __('<a href="https://codex.wordpress.org/Pages_Add_New_Screen" target="_blank" rel="noopener noreferrer">Documentation on Adding New Pages</a>') . '</p>' .
     397                        '<p>' . __('<a href="https://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank" rel="noopener noreferrer">Documentation on Editing Pages</a>') . '</p>' .
     398                        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    399399        );
    400400} elseif ( 'attachment' == $post_type ) {
    401401        get_current_screen()->add_help_tab( array(
     
    410410
    411411        get_current_screen()->set_help_sidebar(
    412412        '<p><strong>' . __('For more information:') . '</strong></p>' .
    413         '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' .
    414         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     413        '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank" rel="noopener noreferrer">Documentation on Edit Media</a>') . '</p>' .
     414        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    415415        );
    416416}
    417417
  • wp-admin/edit-link-form.php

     
    5757        'content' =>
    5858        '<p>' . __( 'You can add or edit links on this screen by entering information in each of the boxes. Only the link&#8217;s web address and name (the text you want to display on your site as the link) are required fields.' ) . '</p>' .
    5959        '<p>' . __( 'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don&#8217;t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.' ) . '</p>' .
    60         '<p>' . __( 'XFN stands for <a href="http://gmpg.org/xfn/" target="_blank">XHTML Friends Network</a>, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.' ) . '</p>'
     60        '<p>' . __( 'XFN stands for <a href="http://gmpg.org/xfn/" target="_blank" rel="noopener noreferrer">XHTML Friends Network</a>, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.' ) . '</p>'
    6161) );
    6262
    6363get_current_screen()->set_help_sidebar(
    6464        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    65         '<p>' . __( '<a href="https://codex.wordpress.org/Links_Add_New_Screen" target="_blank">Documentation on Creating Links</a>' ) . '</p>' .
    66         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     65        '<p>' . __( '<a href="https://codex.wordpress.org/Links_Add_New_Screen" target="_blank" rel="noopener noreferrer">Documentation on Creating Links</a>' ) . '</p>' .
     66        '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    6767);
    6868
    6969require_once( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/edit-tags.php

     
    279279        $help = '<p><strong>' . __( 'For more information:' ) . '</strong></p>';
    280280
    281281        if ( 'category' == $taxonomy )
    282                 $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Posts_Categories_Screen" target="_blank">Documentation on Categories</a>' ) . '</p>';
     282                $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Posts_Categories_Screen" target="_blank" rel="noopener noreferrer">Documentation on Categories</a>' ) . '</p>';
    283283        elseif ( 'link_category' == $taxonomy )
    284                 $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Links_Link_Categories_Screen" target="_blank">Documentation on Link Categories</a>' ) . '</p>';
     284                $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Links_Link_Categories_Screen" target="_blank" rel="noopener noreferrer">Documentation on Link Categories</a>' ) . '</p>';
    285285        else
    286                 $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Posts_Tags_Screen" target="_blank">Documentation on Tags</a>' ) . '</p>';
     286                $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Posts_Tags_Screen" target="_blank" rel="noopener noreferrer">Documentation on Tags</a>' ) . '</p>';
    287287
    288         $help .= '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>';
     288        $help .= '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>';
    289289
    290290        get_current_screen()->set_help_sidebar( $help );
    291291
  • wp-admin/edit.php

     
    221221
    222222        get_current_screen()->set_help_sidebar(
    223223        '<p><strong>' . __('For more information:') . '</strong></p>' .
    224         '<p>' . __('<a href="https://codex.wordpress.org/Posts_Screen" target="_blank">Documentation on Managing Posts</a>') . '</p>' .
    225         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     224        '<p>' . __('<a href="https://codex.wordpress.org/Posts_Screen" target="_blank" rel="noopener noreferrer">Documentation on Managing Posts</a>') . '</p>' .
     225        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    226226        );
    227227
    228228} elseif ( 'page' == $post_type ) {
     
    242242
    243243        get_current_screen()->set_help_sidebar(
    244244        '<p><strong>' . __('For more information:') . '</strong></p>' .
    245         '<p>' . __('<a href="https://codex.wordpress.org/Pages_Screen" target="_blank">Documentation on Managing Pages</a>') . '</p>' .
    246         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     245        '<p>' . __('<a href="https://codex.wordpress.org/Pages_Screen" target="_blank" rel="noopener noreferrer">Documentation on Managing Pages</a>') . '</p>' .
     246        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    247247        );
    248248
    249249}
  • wp-admin/export.php

     
    5151
    5252get_current_screen()->set_help_sidebar(
    5353        '<p><strong>' . __('For more information:') . '</strong></p>' .
    54         '<p>' . __('<a href="https://codex.wordpress.org/Tools_Export_Screen" target="_blank">Documentation on Export</a>') . '</p>' .
    55         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     54        '<p>' . __('<a href="https://codex.wordpress.org/Tools_Export_Screen" target="_blank" rel="noopener noreferrer">Documentation on Export</a>') . '</p>' .
     55        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    5656);
    5757
    5858// If the 'download' URL parameter is set, a WXR export file is baked and returned.
  • wp-admin/import.php

     
    2626
    2727get_current_screen()->set_help_sidebar(
    2828        '<p><strong>' . __('For more information:') . '</strong></p>' .
    29         '<p>' . __('<a href="https://codex.wordpress.org/Tools_Import_Screen" target="_blank">Documentation on Import</a>') . '</p>' .
    30         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     29        '<p>' . __('<a href="https://codex.wordpress.org/Tools_Import_Screen" target="_blank" rel="noopener noreferrer">Documentation on Import</a>') . '</p>' .
     30        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    3131);
    3232
    3333if ( current_user_can( 'install_plugins' ) ) {
  • wp-admin/includes/class-wp-press-this.php

     
    13211321<body class="wp-admin wp-core-ui <?php echo $admin_body_classes . ' ' . $admin_body_class; ?>">
    13221322        <div id="adminbar" class="adminbar">
    13231323                <h1 id="current-site" class="current-site">
    1324                         <a class="current-site-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" target="_blank" rel="home">
     1324                        <a class="current-site-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" target="_blank" rel="noopener noreferrer" rel="home">
    13251325                                <span class="dashicons dashicons-wordpress"></span>
    13261326                                <span class="current-site-name"><?php bloginfo( 'name' ); ?></span>
    13271327                        </a>
     
    13641364                                if ( isset( $data['v'] ) && $this->version > $data['v'] ) {
    13651365                                        ?>
    13661366                                        <p class="alert is-notice">
    1367                                                 <?php printf( __( 'You should upgrade <a href="%s" target="_blank">your bookmarklet</a> to the latest version!' ), admin_url( 'tools.php' ) ); ?>
     1367                                                <?php printf( __( 'You should upgrade <a href="%s" target="_blank" rel="noopener noreferrer">your bookmarklet</a> to the latest version!' ), admin_url( 'tools.php' ) ); ?>
    13681368                                        </p>
    13691369                                        <?php
    13701370                                }
  • wp-admin/includes/media.php

     
    26732673        $a = $end = '';
    26742674
    26752675        if ( current_user_can( 'manage_options' ) ) {
    2676                 $a = '<a href="' . esc_url( admin_url( 'options-media.php' ) ) . '" target="_blank">';
     2676                $a = '<a href="' . esc_url( admin_url( 'options-media.php' ) ) . '" target="_blank" rel="noopener noreferrer">';
    26772677                $end = '</a>';
    26782678        }
    26792679?>
  • wp-admin/includes/meta-boxes.php

     
    881881<div id="minor-publishing-actions">
    882882<div id="preview-action">
    883883<?php if ( !empty($link->link_id) ) { ?>
    884         <a class="preview button" href="<?php echo $link->link_url; ?>" target="_blank"><?php _e('Visit Link'); ?></a>
     884        <a class="preview button" href="<?php echo $link->link_url; ?>" target="_blank" rel="noopener noreferrer"><?php _e('Visit Link'); ?></a>
    885885<?php } ?>
    886886</div>
    887887<div class="clear"></div>
  • wp-admin/includes/plugin-install.php

     
    565565                                        }
    566566                                        ?></li>
    567567                        <?php } if ( ! empty( $api->slug ) && empty( $api->external ) ) { ?>
    568                                 <li><a target="_blank" href="https://wordpress.org/plugins/<?php echo $api->slug; ?>/"><?php _e( 'WordPress.org Plugin Page &#187;' ); ?></a></li>
     568                                <li><a target="_blank" rel="noopener noreferrer" href="https://wordpress.org/plugins/<?php echo $api->slug; ?>/"><?php _e( 'WordPress.org Plugin Page &#187;' ); ?></a></li>
    569569                        <?php } if ( ! empty( $api->homepage ) ) { ?>
    570                                 <li><a target="_blank" href="<?php echo esc_url( $api->homepage ); ?>"><?php _e( 'Plugin Homepage &#187;' ); ?></a></li>
     570                                <li><a target="_blank" rel="noopener noreferrer" href="<?php echo esc_url( $api->homepage ); ?>"><?php _e( 'Plugin Homepage &#187;' ); ?></a></li>
    571571                        <?php } if ( ! empty( $api->donate_link ) && empty( $api->contributors ) ) { ?>
    572                                 <li><a target="_blank" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin &#187;' ); ?></a></li>
     572                                <li><a target="_blank" rel="noopener noreferrer" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin &#187;' ); ?></a></li>
    573573                        <?php } ?>
    574574                </ul>
    575575                <?php if ( ! empty( $api->rating ) ) { ?>
     
    593593                                ?>
    594594                                <div class="counter-container">
    595595                                                <span class="counter-label"><a href="https://wordpress.org/support/view/plugin-reviews/<?php echo $api->slug; ?>?filter=<?php echo $key; ?>"
    596                                                                                target="_blank" aria-label="<?php echo $aria_label; ?>"><?php printf( _n( '%d star', '%d stars', $key ), $key ); ?></a></span>
     596                                                                               target="_blank" rel="noopener noreferrer" aria-label="<?php echo $aria_label; ?>"><?php printf( _n( '%d star', '%d stars', $key ), $key ); ?></a></span>
    597597                                                <span class="counter-back">
    598598                                                        <span class="counter-bar" style="width: <?php echo 92 * $_rating; ?>px;"></span>
    599599                                                </span>
     
    623623                                ?>
    624624                        </ul>
    625625                        <?php if ( ! empty( $api->donate_link ) ) { ?>
    626                                 <a target="_blank" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin &#187;' ); ?></a>
     626                                <a target="_blank" rel="noopener noreferrer" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin &#187;' ); ?></a>
    627627                        <?php } ?>
    628628                <?php } ?>
    629629        </div>
  • wp-admin/includes/post.php

     
    13261326
    13271327                // Encourage a pretty permalink setting
    13281328                if ( '' == get_option( 'permalink_structure' ) && current_user_can( 'manage_options' ) && !( 'page' == get_option('show_on_front') && $id == get_option('page_on_front') ) ) {
    1329                         $return .= '<span id="change-permalinks"><a href="options-permalink.php" class="button button-small" target="_blank">' . __('Change Permalinks') . "</a></span>\n";
     1329                        $return .= '<span id="change-permalinks"><a href="options-permalink.php" class="button button-small" target="_blank" rel="noopener noreferrer">' . __('Change Permalinks') . "</a></span>\n";
    13301330                }
    13311331        } else {
    13321332                if ( mb_strlen( $post_name ) > 34 ) {
  • wp-admin/index.php

     
    9595
    9696$screen->set_help_sidebar(
    9797        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    98         '<p>' . __( '<a href="https://codex.wordpress.org/Dashboard_Screen" target="_blank">Documentation on Dashboard</a>' ) . '</p>' .
    99         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     98        '<p>' . __( '<a href="https://codex.wordpress.org/Dashboard_Screen" target="_blank" rel="noopener noreferrer">Documentation on Dashboard</a>' ) . '</p>' .
     99        '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    100100);
    101101
    102102include( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/link-manager.php

     
    5757
    5858get_current_screen()->set_help_sidebar(
    5959        '<p><strong>' . __('For more information:') . '</strong></p>' .
    60         '<p>' . __('<a href="https://codex.wordpress.org/Links_Screen" target="_blank">Documentation on Managing Links</a>') . '</p>' .
    61         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     60        '<p>' . __('<a href="https://codex.wordpress.org/Links_Screen" target="_blank" rel="noopener noreferrer">Documentation on Managing Links</a>') . '</p>' .
     61        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    6262);
    6363
    6464get_current_screen()->set_screen_reader_content( array(
  • wp-admin/media-new.php

     
    5353) );
    5454get_current_screen()->set_help_sidebar(
    5555        '<p><strong>' . __('For more information:') . '</strong></p>' .
    56         '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen" target="_blank">Documentation on Uploading Media Files</a>') . '</p>' .
    57         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     56        '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen" target="_blank" rel="noopener noreferrer">Documentation on Uploading Media Files</a>') . '</p>' .
     57        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    5858);
    5959
    6060require_once( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/media.php

     
    8080
    8181        get_current_screen()->set_help_sidebar(
    8282        '<p><strong>' . __('For more information:') . '</strong></p>' .
    83         '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' .
    84         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     83        '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank" rel="noopener noreferrer">Documentation on Edit Media</a>') . '</p>' .
     84        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    8585        );
    8686
    8787        require( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/my-sites.php

     
    4444
    4545get_current_screen()->set_help_sidebar(
    4646        '<p><strong>' . __('For more information:') . '</strong></p>' .
    47         '<p>' . __('<a href="https://codex.wordpress.org/Dashboard_My_Sites_Screen" target="_blank">Documentation on My Sites</a>') . '</p>' .
    48         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     47        '<p>' . __('<a href="https://codex.wordpress.org/Dashboard_My_Sites_Screen" target="_blank" rel="noopener noreferrer">Documentation on My Sites</a>') . '</p>' .
     48        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    4949);
    5050
    5151require_once( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/nav-menus.php

     
    567567
    568568get_current_screen()->set_help_sidebar(
    569569        '<p><strong>' . __('For more information:') . '</strong></p>' .
    570         '<p>' . __('<a href="https://codex.wordpress.org/Appearance_Menus_Screen" target="_blank">Documentation on Menus</a>') . '</p>' .
    571         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     570        '<p>' . __('<a href="https://codex.wordpress.org/Appearance_Menus_Screen" target="_blank" rel="noopener noreferrer">Documentation on Menus</a>') . '</p>' .
     571        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    572572);
    573573
    574574// Get the admin header.
  • wp-admin/network.php

     
    6363        '<p>' . __('Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.') . '</p>' .
    6464        '<p>' . __('The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with &#8220;/blog/&#8221; from the main site. This disabling will be addressed in a future version.') . '</p>' .
    6565        '<p><strong>' . __('For more information:') . '</strong></p>' .
    66         '<p>' . __('<a href="https://codex.wordpress.org/Create_A_Network" target="_blank">Documentation on Creating a Network</a>') . '</p>' .
    67         '<p>' . __('<a href="https://codex.wordpress.org/Tools_Network_Screen" target="_blank">Documentation on the Network Screen</a>') . '</p>';
     66        '<p>' . __('<a href="https://codex.wordpress.org/Create_A_Network" target="_blank" rel="noopener noreferrer">Documentation on Creating a Network</a>') . '</p>' .
     67        '<p>' . __('<a href="https://codex.wordpress.org/Tools_Network_Screen" target="_blank" rel="noopener noreferrer">Documentation on the Network Screen</a>') . '</p>';
    6868
    6969get_current_screen()->add_help_tab( array(
    7070        'id'      => 'network',
     
    7474
    7575get_current_screen()->set_help_sidebar(
    7676        '<p><strong>' . __('For more information:') . '</strong></p>' .
    77         '<p>' . __('<a href="https://codex.wordpress.org/Create_A_Network" target="_blank">Documentation on Creating a Network</a>') . '</p>' .
    78         '<p>' . __('<a href="https://codex.wordpress.org/Tools_Network_Screen" target="_blank">Documentation on the Network Screen</a>') . '</p>' .
    79         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     77        '<p>' . __('<a href="https://codex.wordpress.org/Create_A_Network" target="_blank" rel="noopener noreferrer">Documentation on Creating a Network</a>') . '</p>' .
     78        '<p>' . __('<a href="https://codex.wordpress.org/Tools_Network_Screen" target="_blank" rel="noopener noreferrer">Documentation on the Network Screen</a>') . '</p>' .
     79        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    8080);
    8181
    8282include( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/network/index.php

     
    5050
    5151get_current_screen()->set_help_sidebar(
    5252        '<p><strong>' . __('For more information:') . '</strong></p>' .
    53         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin" target="_blank">Documentation on the Network Admin</a>') . '</p>' .
    54         '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
     53        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin" target="_blank" rel="noopener noreferrer">Documentation on the Network Admin</a>') . '</p>' .
     54        '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    5555);
    5656
    5757wp_dashboard_setup();
  • wp-admin/network/settings.php

     
    4040
    4141get_current_screen()->set_help_sidebar(
    4242        '<p><strong>' . __('For more information:') . '</strong></p>' .
    43         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Settings_Screen" target="_blank">Documentation on Network Settings</a>') . '</p>' .
    44         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     43        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Settings_Screen" target="_blank" rel="noopener noreferrer">Documentation on Network Settings</a>') . '</p>' .
     44        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    4545);
    4646
    4747if ( $_POST ) {
  • wp-admin/network/site-info.php

     
    3131
    3232get_current_screen()->set_help_sidebar(
    3333        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    34         '<p>' . __( '<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>' ) . '</p>' .
    35         '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>' ) . '</p>'
     34        '<p>' . __( '<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank" rel="noopener noreferrer">Documentation on Site Management</a>' ) . '</p>' .
     35        '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    3636);
    3737
    3838$id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0;
  • wp-admin/network/site-new.php

     
    2929
    3030get_current_screen()->set_help_sidebar(
    3131        '<p><strong>' . __('For more information:') . '</strong></p>' .
    32         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .
    33         '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
     32        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank" rel="noopener noreferrer">Documentation on Site Management</a>') . '</p>' .
     33        '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    3434);
    3535
    3636if ( isset($_REQUEST['action']) && 'add-site' == $_REQUEST['action'] ) {
  • wp-admin/network/site-settings.php

     
    2929
    3030get_current_screen()->set_help_sidebar(
    3131        '<p><strong>' . __('For more information:') . '</strong></p>' .
    32         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .
    33         '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
     32        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank" rel="noopener noreferrer">Documentation on Site Management</a>') . '</p>' .
     33        '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    3434);
    3535
    3636$id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0;
  • wp-admin/network/site-themes.php

     
    2929
    3030get_current_screen()->set_help_sidebar(
    3131        '<p><strong>' . __('For more information:') . '</strong></p>' .
    32         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .
    33         '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
     32        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank" rel="noopener noreferrer">Documentation on Site Management</a>') . '</p>' .
     33        '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    3434);
    3535
    3636get_current_screen()->set_screen_reader_content( array(
  • wp-admin/network/site-users.php

     
    3232
    3333get_current_screen()->set_help_sidebar(
    3434        '<p><strong>' . __('For more information:') . '</strong></p>' .
    35         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .
    36         '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
     35        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank" rel="noopener noreferrer">Documentation on Site Management</a>') . '</p>' .
     36        '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    3737);
    3838
    3939get_current_screen()->set_screen_reader_content( array(
  • wp-admin/network/sites.php

     
    4242
    4343get_current_screen()->set_help_sidebar(
    4444        '<p><strong>' . __('For more information:') . '</strong></p>' .
    45         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .
    46         '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
     45        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank" rel="noopener noreferrer">Documentation on Site Management</a>') . '</p>' .
     46        '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    4747);
    4848
    4949get_current_screen()->set_screen_reader_content( array(
  • wp-admin/network/themes.php

     
    215215
    216216get_current_screen()->set_help_sidebar(
    217217        '<p><strong>' . __('For more information:') . '</strong></p>' .
    218         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Themes_Screen" target="_blank">Documentation on Network Themes</a>') . '</p>' .
    219         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     218        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Themes_Screen" target="_blank" rel="noopener noreferrer">Documentation on Network Themes</a>') . '</p>' .
     219        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    220220);
    221221
    222222get_current_screen()->set_screen_reader_content( array(
  • wp-admin/network/upgrade.php

     
    2929
    3030get_current_screen()->set_help_sidebar(
    3131        '<p><strong>' . __('For more information:') . '</strong></p>' .
    32         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Updates_Screen" target="_blank">Documentation on Upgrade Network</a>') . '</p>' .
    33         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     32        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Updates_Screen" target="_blank" rel="noopener noreferrer">Documentation on Upgrade Network</a>') . '</p>' .
     33        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    3434);
    3535
    3636require_once( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/network/user-new.php

     
    2626
    2727get_current_screen()->set_help_sidebar(
    2828        '<p><strong>' . __('For more information:') . '</strong></p>' .
    29         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Users_Screen" target="_blank">Documentation on Network Users</a>') . '</p>' .
    30         '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
     29        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Users_Screen" target="_blank" rel="noopener noreferrer">Documentation on Network Users</a>') . '</p>' .
     30        '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    3131);
    3232
    3333if ( isset($_REQUEST['action']) && 'add-user' == $_REQUEST['action'] ) {
  • wp-admin/network/users.php

     
    168168
    169169get_current_screen()->set_help_sidebar(
    170170        '<p><strong>' . __('For more information:') . '</strong></p>' .
    171         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Users_Screen" target="_blank">Documentation on Network Users</a>') . '</p>' .
    172         '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
     171        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Users_Screen" target="_blank" rel="noopener noreferrer">Documentation on Network Users</a>') . '</p>' .
     172        '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    173173);
    174174
    175175get_current_screen()->set_screen_reader_content( array(
  • wp-admin/options-discussion.php

     
    2525
    2626get_current_screen()->set_help_sidebar(
    2727        '<p><strong>' . __('For more information:') . '</strong></p>' .
    28         '<p>' . __('<a href="https://codex.wordpress.org/Settings_Discussion_Screen" target="_blank">Documentation on Discussion Settings</a>') . '</p>' .
    29         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     28        '<p>' . __('<a href="https://codex.wordpress.org/Settings_Discussion_Screen" target="_blank" rel="noopener noreferrer">Documentation on Discussion Settings</a>') . '</p>' .
     29        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    3030);
    3131
    3232include( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/options-general.php

     
    4242
    4343get_current_screen()->set_help_sidebar(
    4444        '<p><strong>' . __('For more information:') . '</strong></p>' .
    45         '<p>' . __('<a href="https://codex.wordpress.org/Settings_General_Screen" target="_blank">Documentation on General Settings</a>') . '</p>' .
    46         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     45        '<p>' . __('<a href="https://codex.wordpress.org/Settings_General_Screen" target="_blank" rel="noopener noreferrer">Documentation on General Settings</a>') . '</p>' .
     46        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    4747);
    4848
    4949include( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/options-media.php

     
    3131
    3232get_current_screen()->set_help_sidebar(
    3333        '<p><strong>' . __('For more information:') . '</strong></p>' .
    34         '<p>' . __('<a href="https://codex.wordpress.org/Settings_Media_Screen" target="_blank">Documentation on Media Settings</a>') . '</p>' .
    35         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     34        '<p>' . __('<a href="https://codex.wordpress.org/Settings_Media_Screen" target="_blank" rel="noopener noreferrer">Documentation on Media Settings</a>') . '</p>' .
     35        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    3636);
    3737
    3838include( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/options-permalink.php

     
    4141
    4242get_current_screen()->set_help_sidebar(
    4343        '<p><strong>' . __('For more information:') . '</strong></p>' .
    44         '<p>' . __('<a href="https://codex.wordpress.org/Settings_Permalinks_Screen" target="_blank">Documentation on Permalinks Settings</a>') . '</p>' .
    45         '<p>' . __('<a href="https://codex.wordpress.org/Using_Permalinks" target="_blank">Documentation on Using Permalinks</a>') . '</p>' .
    46         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     44        '<p>' . __('<a href="https://codex.wordpress.org/Settings_Permalinks_Screen" target="_blank" rel="noopener noreferrer">Documentation on Permalinks Settings</a>') . '</p>' .
     45        '<p>' . __('<a href="https://codex.wordpress.org/Using_Permalinks" target="_blank" rel="noopener noreferrer">Documentation on Using Permalinks</a>') . '</p>' .
     46        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    4747);
    4848
    4949add_filter('admin_head', 'options_permalink_add_js');
  • wp-admin/options-reading.php

     
    3535
    3636get_current_screen()->set_help_sidebar(
    3737        '<p><strong>' . __('For more information:') . '</strong></p>' .
    38         '<p>' . __('<a href="https://codex.wordpress.org/Settings_Reading_Screen" target="_blank">Documentation on Reading Settings</a>') . '</p>' .
    39         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     38        '<p>' . __('<a href="https://codex.wordpress.org/Settings_Reading_Screen" target="_blank" rel="noopener noreferrer">Documentation on Reading Settings</a>') . '</p>' .
     39        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    4040);
    4141
    4242include( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/options-writing.php

     
    4242
    4343get_current_screen()->set_help_sidebar(
    4444        '<p><strong>' . __('For more information:') . '</strong></p>' .
    45         '<p>' . __('<a href="https://codex.wordpress.org/Settings_Writing_Screen" target="_blank">Documentation on Writing Settings</a>') . '</p>' .
    46         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     45        '<p>' . __('<a href="https://codex.wordpress.org/Settings_Writing_Screen" target="_blank" rel="noopener noreferrer">Documentation on Writing Settings</a>') . '</p>' .
     46        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    4747);
    4848
    4949include( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/plugin-editor.php

     
    140140
    141141        get_current_screen()->set_help_sidebar(
    142142                '<p><strong>' . __('For more information:') . '</strong></p>' .
    143                 '<p>' . __('<a href="https://codex.wordpress.org/Plugins_Editor_Screen" target="_blank">Documentation on Editing Plugins</a>') . '</p>' .
    144                 '<p>' . __('<a href="https://codex.wordpress.org/Writing_a_Plugin" target="_blank">Documentation on Writing Plugins</a>') . '</p>' .
    145                 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     143                '<p>' . __('<a href="https://codex.wordpress.org/Plugins_Editor_Screen" target="_blank" rel="noopener noreferrer">Documentation on Editing Plugins</a>') . '</p>' .
     144                '<p>' . __('<a href="https://codex.wordpress.org/Writing_a_Plugin" target="_blank" rel="noopener noreferrer">Documentation on Writing Plugins</a>') . '</p>' .
     145                '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    146146        );
    147147
    148148        require_once(ABSPATH . 'wp-admin/admin-header.php');
  • wp-admin/plugin-install.php

     
    7979'id'            => 'overview',
    8080'title'         => __('Overview'),
    8181'content'       =>
    82         '<p>' . sprintf( __('Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official <a href="%s" target="_blank">WordPress Plugin Directory</a> are compatible with the license WordPress uses.' ), __( 'https://wordpress.org/plugins/' ) ) . '</p>' .
     82        '<p>' . sprintf( __('Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official <a href="%s" target="_blank" rel="noopener noreferrer">WordPress Plugin Directory</a> are compatible with the license WordPress uses.' ), __( 'https://wordpress.org/plugins/' ) ) . '</p>' .
    8383        '<p>' . __( 'You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.' ) . ' <span id="live-search-desc" class="hide-if-no-js">' . __( 'The search results will be updated as you type.' ) . '</span></p>'
    8484
    8585) );
     
    9595
    9696get_current_screen()->set_help_sidebar(
    9797        '<p><strong>' . __('For more information:') . '</strong></p>' .
    98         '<p>' . __('<a href="https://codex.wordpress.org/Plugins_Add_New_Screen" target="_blank">Documentation on Installing Plugins</a>') . '</p>' .
    99         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     98        '<p>' . __('<a href="https://codex.wordpress.org/Plugins_Add_New_Screen" target="_blank" rel="noopener noreferrer">Documentation on Installing Plugins</a>') . '</p>' .
     99        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    100100);
    101101
    102102get_current_screen()->set_screen_reader_content( array(
  • wp-admin/plugins.php

     
    374374        '<p>' . __( 'The search for installed plugins will search for terms in their name, description, or author.' ) . ' <span id="live-search-desc" class="hide-if-no-js">' . __( 'The search results will be updated as you type.' ) . '</span></p>' .
    375375        '<p>' . sprintf(
    376376                /* translators: %s: WordPress Plugin Directory URL */
    377                 __( 'If you would like to see more plugins to choose from, click on the &#8220;Add New&#8221; button and you will be able to browse or search for additional plugins from the <a href="%s" target="_blank">WordPress Plugin Directory</a>. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they&#8217;re free!' ),
     377                __( 'If you would like to see more plugins to choose from, click on the &#8220;Add New&#8221; button and you will be able to browse or search for additional plugins from the <a href="%s" target="_blank" rel="noopener noreferrer">WordPress Plugin Directory</a>. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they&#8217;re free!' ),
    378378                __( 'https://wordpress.org/plugins/' )
    379379        ) . '</p>'
    380380) );
     
    392392
    393393get_current_screen()->set_help_sidebar(
    394394        '<p><strong>' . __('For more information:') . '</strong></p>' .
    395         '<p>' . __('<a href="https://codex.wordpress.org/Managing_Plugins#Plugin_Management" target="_blank">Documentation on Managing Plugins</a>') . '</p>' .
    396         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     395        '<p>' . __('<a href="https://codex.wordpress.org/Managing_Plugins#Plugin_Management" target="_blank" rel="noopener noreferrer">Documentation on Managing Plugins</a>') . '</p>' .
     396        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    397397);
    398398
    399399get_current_screen()->set_screen_reader_content( array(
  • wp-admin/revision.php

     
    116116) );
    117117
    118118$revisions_sidebar  = '<p><strong>' . __( 'For more information:' ) . '</strong></p>';
    119 $revisions_sidebar .= '<p>' . __( '<a href="https://codex.wordpress.org/Revision_Management" target="_blank">Revisions Management</a>' ) . '</p>';
    120 $revisions_sidebar .= '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>';
     119$revisions_sidebar .= '<p>' . __( '<a href="https://codex.wordpress.org/Revision_Management" target="_blank" rel="noopener noreferrer">Revisions Management</a>' ) . '</p>';
     120$revisions_sidebar .= '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>';
    121121
    122122get_current_screen()->set_help_sidebar( $revisions_sidebar );
    123123
  • wp-admin/theme-editor.php

     
    3030        <p id="newcontent-description">' . __( 'In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key. In some cases the Esc key will need to be pressed twice before the Tab key will allow you to continue.' ) . '</p>
    3131        <p>' . __('After typing in your edits, click Update File.') . '</p>
    3232        <p>' . __('<strong>Advice:</strong> think very carefully about your site crashing if you are live-editing the theme currently in use.') . '</p>
    33         <p>' . sprintf( __('Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a <a href="%s" target="_blank">child theme</a> instead.'), __('https://codex.wordpress.org/Child_Themes') ) . '</p>' .
     33        <p>' . sprintf( __('Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a <a href="%s" target="_blank" rel="noopener noreferrer">child theme</a> instead.'), __('https://codex.wordpress.org/Child_Themes') ) . '</p>' .
    3434        ( is_network_admin() ? '<p>' . __('Any edits to files from this screen will be reflected on all sites in the network.') . '</p>' : '' )
    3535) );
    3636
    3737get_current_screen()->set_help_sidebar(
    3838        '<p><strong>' . __('For more information:') . '</strong></p>' .
    39         '<p>' . __('<a href="https://codex.wordpress.org/Theme_Development" target="_blank">Documentation on Theme Development</a>') . '</p>' .
    40         '<p>' . __('<a href="https://codex.wordpress.org/Using_Themes" target="_blank">Documentation on Using Themes</a>') . '</p>' .
    41         '<p>' . __('<a href="https://codex.wordpress.org/Editing_Files" target="_blank">Documentation on Editing Files</a>') . '</p>' .
    42         '<p>' . __('<a href="https://codex.wordpress.org/Template_Tags" target="_blank">Documentation on Template Tags</a>') . '</p>' .
    43         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     39        '<p>' . __('<a href="https://codex.wordpress.org/Theme_Development" target="_blank" rel="noopener noreferrer">Documentation on Theme Development</a>') . '</p>' .
     40        '<p>' . __('<a href="https://codex.wordpress.org/Using_Themes" target="_blank" rel="noopener noreferrer">Documentation on Using Themes</a>') . '</p>' .
     41        '<p>' . __('<a href="https://codex.wordpress.org/Editing_Files" target="_blank" rel="noopener noreferrer">Documentation on Editing Files</a>') . '</p>' .
     42        '<p>' . __('<a href="https://codex.wordpress.org/Template_Tags" target="_blank" rel="noopener noreferrer">Documentation on Template Tags</a>') . '</p>' .
     43        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    4444);
    4545
    4646wp_reset_vars( array( 'action', 'error', 'file', 'theme' ) );
  • wp-admin/theme-install.php

     
    7676$help_overview =
    7777        '<p>' . sprintf(
    7878                        /* translators: %s: Theme Directory URL */
    79                         __( 'You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the <a href="%s" target="_blank">WordPress Theme Directory</a>. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.' ),
     79                        __( 'You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the <a href="%s" target="_blank" rel="noopener noreferrer">WordPress Theme Directory</a>. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.' ),
    8080                        __( 'https://wordpress.org/themes/' )
    8181                ) . '</p>' .
    8282        '<p>' . __( 'You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.' ) . ' <span id="live-search-desc">' . __( 'The search results will be updated as you type.' ) . '</span></p>' .
     
    105105
    106106get_current_screen()->set_help_sidebar(
    107107        '<p><strong>' . __('For more information:') . '</strong></p>' .
    108         '<p>' . __('<a href="https://codex.wordpress.org/Using_Themes#Adding_New_Themes" target="_blank">Documentation on Adding New Themes</a>') . '</p>' .
    109         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     108        '<p>' . __('<a href="https://codex.wordpress.org/Using_Themes#Adding_New_Themes" target="_blank" rel="noopener noreferrer">Documentation on Adding New Themes</a>') . '</p>' .
     109        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    110110);
    111111
    112112include(ABSPATH . 'wp-admin/admin-header.php');
  • wp-admin/themes.php

     
    8989        if ( is_multisite() ) {
    9090                $help_install = '<p>' . __('Installing themes on Multisite can only be done from the Network Admin section.') . '</p>';
    9191        } else {
    92                 $help_install = '<p>' . sprintf( __('If you would like to see more themes to choose from, click on the &#8220;Add New&#8221; button and you will be able to browse or search for additional themes from the <a href="%s" target="_blank">WordPress Theme Directory</a>. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they&#8217;re free!'), __( 'https://wordpress.org/themes/' ) ) . '</p>';
     92                $help_install = '<p>' . sprintf( __('If you would like to see more themes to choose from, click on the &#8220;Add New&#8221; button and you will be able to browse or search for additional themes from the <a href="%s" target="_blank" rel="noopener noreferrer">WordPress Theme Directory</a>. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they&#8217;re free!'), __( 'https://wordpress.org/themes/' ) ) . '</p>';
    9393        }
    9494
    9595        get_current_screen()->add_help_tab( array(
     
    115115
    116116get_current_screen()->set_help_sidebar(
    117117        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    118         '<p>' . __( '<a href="https://codex.wordpress.org/Using_Themes" target="_blank">Documentation on Using Themes</a>' ) . '</p>' .
    119         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     118        '<p>' . __( '<a href="https://codex.wordpress.org/Using_Themes" target="_blank" rel="noopener noreferrer">Documentation on Using Themes</a>' ) . '</p>' .
     119        '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    120120);
    121121
    122122if ( current_user_can( 'switch_themes' ) ) {
  • wp-admin/tools.php

     
    2525
    2626get_current_screen()->set_help_sidebar(
    2727        '<p><strong>' . __('For more information:') . '</strong></p>' .
    28         '<p>' . __('<a href="https://codex.wordpress.org/Tools_Screen" target="_blank">Documentation on Tools</a>') . '</p>' .
    29         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     28        '<p>' . __('<a href="https://codex.wordpress.org/Tools_Screen" target="_blank" rel="noopener noreferrer">Documentation on Tools</a>') . '</p>' .
     29        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    3030);
    3131
    3232require_once( ABSPATH . 'wp-admin/admin-header.php' );
  • wp-admin/update-core.php

     
    569569
    570570get_current_screen()->set_help_sidebar(
    571571        '<p><strong>' . __('For more information:') . '</strong></p>' .
    572         '<p>' . __( '<a href="https://codex.wordpress.org/Dashboard_Updates_Screen" target="_blank">Documentation on Updating WordPress</a>' ) . '</p>' .
    573         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     572        '<p>' . __( '<a href="https://codex.wordpress.org/Dashboard_Updates_Screen" target="_blank" rel="noopener noreferrer">Documentation on Updating WordPress</a>' ) . '</p>' .
     573        '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    574574);
    575575
    576576if ( 'upgrade-core' == $action ) {
  • wp-admin/upload.php

     
    6363
    6464        get_current_screen()->set_help_sidebar(
    6565                '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    66                 '<p>' . __( '<a href="https://codex.wordpress.org/Media_Library_Screen" target="_blank">Documentation on Media Library</a>' ) . '</p>' .
    67                 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     66                '<p>' . __( '<a href="https://codex.wordpress.org/Media_Library_Screen" target="_blank" rel="noopener noreferrer">Documentation on Media Library</a>' ) . '</p>' .
     67                '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    6868        );
    6969
    7070        $title = __('Media Library');
     
    204204
    205205get_current_screen()->set_help_sidebar(
    206206        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    207         '<p>' . __( '<a href="https://codex.wordpress.org/Media_Library_Screen" target="_blank">Documentation on Media Library</a>' ) . '</p>' .
    208         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     207        '<p>' . __( '<a href="https://codex.wordpress.org/Media_Library_Screen" target="_blank" rel="noopener noreferrer">Documentation on Media Library</a>' ) . '</p>' .
     208        '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>' ) . '</p>'
    209209);
    210210
    211211get_current_screen()->set_screen_reader_content( array(
  • wp-admin/user-edit.php

     
    5151
    5252get_current_screen()->set_help_sidebar(
    5353    '<p><strong>' . __('For more information:') . '</strong></p>' .
    54     '<p>' . __('<a href="https://codex.wordpress.org/Users_Your_Profile_Screen" target="_blank">Documentation on User Profiles</a>') . '</p>' .
    55     '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     54    '<p>' . __('<a href="https://codex.wordpress.org/Users_Your_Profile_Screen" target="_blank" rel="noopener noreferrer">Documentation on User Profiles</a>') . '</p>' .
     55    '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    5656);
    5757
    5858$wp_http_referer = remove_query_arg( array( 'update', 'delete_count', 'user_id' ), $wp_http_referer );
     
    257257if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?>
    258258<tr class="user-comment-shortcuts-wrap">
    259259<th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th>
    260 <td><label for="comment_shortcuts"><input type="checkbox" name="comment_shortcuts" id="comment_shortcuts" value="true" <?php if ( ! empty( $profileuser->comment_shortcuts ) ) checked( 'true', $profileuser->comment_shortcuts ); ?> /> <?php _e('Enable keyboard shortcuts for comment moderation.'); ?></label> <?php _e('<a href="https://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">More information</a>'); ?></td>
     260<td><label for="comment_shortcuts"><input type="checkbox" name="comment_shortcuts" id="comment_shortcuts" value="true" <?php if ( ! empty( $profileuser->comment_shortcuts ) ) checked( 'true', $profileuser->comment_shortcuts ); ?> /> <?php _e('Enable keyboard shortcuts for comment moderation.'); ?></label> <?php _e('<a href="https://codex.wordpress.org/Keyboard_Shortcuts" target="_blank" rel="noopener noreferrer">More information</a>'); ?></td>
    261261</tr>
    262262<?php endif; ?>
    263263<tr class="show-admin-bar user-admin-bar-front-wrap">
  • wp-admin/user-new.php

     
    203203
    204204get_current_screen()->set_help_sidebar(
    205205    '<p><strong>' . __('For more information:') . '</strong></p>' .
    206     '<p>' . __('<a href="https://codex.wordpress.org/Users_Add_New_Screen" target="_blank">Documentation on Adding New Users</a>') . '</p>' .
    207     '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     206    '<p>' . __('<a href="https://codex.wordpress.org/Users_Add_New_Screen" target="_blank" rel="noopener noreferrer">Documentation on Adding New Users</a>') . '</p>' .
     207    '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    208208);
    209209
    210210wp_enqueue_script('wp-ajax-response');
  • wp-admin/users.php

     
    6464
    6565get_current_screen()->set_help_sidebar(
    6666    '<p><strong>' . __('For more information:') . '</strong></p>' .
    67     '<p>' . __('<a href="https://codex.wordpress.org/Users_Screen" target="_blank">Documentation on Managing Users</a>') . '</p>' .
    68     '<p>' . __('<a href="https://codex.wordpress.org/Roles_and_Capabilities" target="_blank">Descriptions of Roles and Capabilities</a>') . '</p>' .
    69     '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     67    '<p>' . __('<a href="https://codex.wordpress.org/Users_Screen" target="_blank" rel="noopener noreferrer">Documentation on Managing Users</a>') . '</p>' .
     68    '<p>' . __('<a href="https://codex.wordpress.org/Roles_and_Capabilities" target="_blank" rel="noopener noreferrer">Descriptions of Roles and Capabilities</a>') . '</p>' .
     69    '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    7070);
    7171
    7272get_current_screen()->set_screen_reader_content( array(
  • wp-admin/widgets.php

     
    7171
    7272get_current_screen()->set_help_sidebar(
    7373        '<p><strong>' . __('For more information:') . '</strong></p>' .
    74         '<p>' . __('<a href="https://codex.wordpress.org/Appearance_Widgets_Screen" target="_blank">Documentation on Widgets</a>') . '</p>' .
    75         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     74        '<p>' . __('<a href="https://codex.wordpress.org/Appearance_Widgets_Screen" target="_blank" rel="noopener noreferrer">Documentation on Widgets</a>') . '</p>' .
     75        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>') . '</p>'
    7676);
    7777
    7878if ( ! current_theme_supports( 'widgets' ) ) {
  • wp-content/themes/twentyeleven/inc/theme-options.php

     
    117117                        '<p>' . __( 'Remember to click "Save Changes" to save any changes you have made to the theme options.', 'twentyeleven' ) . '</p>';
    118118
    119119        $sidebar = '<p><strong>' . __( 'For more information:', 'twentyeleven' ) . '</strong></p>' .
    120                 '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Theme_Options_Screen" target="_blank">Documentation on Theme Options</a>', 'twentyeleven' ) . '</p>' .
    121                 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>', 'twentyeleven' ) . '</p>';
     120                '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Theme_Options_Screen" target="_blank" rel="noopener noreferrer">Documentation on Theme Options</a>', 'twentyeleven' ) . '</p>' .
     121                '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank" rel="noopener noreferrer">Support Forums</a>', 'twentyeleven' ) . '</p>';
    122122
    123123        $screen = get_current_screen();
    124124
  • wp-includes/functions.php

     
    51975197        ?>
    51985198        <div class="wp-auth-fallback">
    51995199                <p><b class="wp-auth-fallback-expired" tabindex="0"><?php _e('Session expired'); ?></b></p>
    5200                 <p><a href="<?php echo esc_url( $login_url ); ?>" target="_blank"><?php _e('Please log in again.'); ?></a>
     5200                <p><a href="<?php echo esc_url( $login_url ); ?>" target="_blank" rel="noopener noreferrer"><?php _e('Please log in again.'); ?></a>
    52015201                <?php _e('The login page will open in a new window. After logging in you can close it and return to this page.'); ?></p>
    52025202        </div>
    52035203        </div>
  • wp-includes/media-template.php

     
    518518                                        <# } #>
    519519
    520520                                        <# if ( data.can.save && data.sizes ) { #>
    521                                                 <a class="edit-attachment" href="{{ data.editLink }}&amp;image-editor" target="_blank"><?php _e( 'Edit Image' ); ?></a>
     521                                                <a class="edit-attachment" href="{{ data.editLink }}&amp;image-editor" target="_blank" rel="noopener noreferrer"><?php _e( 'Edit Image' ); ?></a>
    522522                                        <# } #>
    523523                                <# } #>
    524524
  • wp-includes/ms-load.php

     
    472472        }
    473473        $msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> ';
    474474        /* translators: %s: Codex URL */
    475         $msg .= sprintf( __( 'Read the <a href="%s" target="_blank">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ),
     475        $msg .= sprintf( __( 'Read the <a href="%s" target="_blank" rel="noopener noreferrer">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ),
    476476                __( 'https://codex.wordpress.org/Debugging_a_WordPress_Network' )
    477477        );
    478478        $msg .= ' ' . __( 'If you&#8217;re still stuck with this message, then check that your database contains the following tables:' ) . '</p><ul>';