Ticket #37941: 37941.diff
File 37941.diff, 71.9 KB (added by , 7 years ago) |
---|
-
wp-admin/async-upload.php
60 60 case 3 : 61 61 if ( $thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true ) ) 62 62 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>'; 64 64 65 65 // Title shouldn't ever be empty, but use filename just in case. 66 66 $file = get_attached_file( $post->ID ); -
wp-admin/comment.php
48 48 49 49 get_current_screen()->set_help_sidebar( 50 50 '<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>' 53 53 ); 54 54 55 55 wp_enqueue_script('comment'); -
wp-admin/custom-background.php
97 97 98 98 get_current_screen()->set_help_sidebar( 99 99 '<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>' 102 102 ); 103 103 104 104 wp_enqueue_media(); -
wp-admin/custom-header.php
124 124 125 125 get_current_screen()->set_help_sidebar( 126 126 '<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>' 129 129 ); 130 130 } 131 131 -
wp-admin/edit-comments.php
162 162 163 163 get_current_screen()->set_help_sidebar( 164 164 '<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>' 169 169 ); 170 170 171 171 get_current_screen()->set_screen_reader_content( array( -
wp-admin/edit-form-advanced.php
92 92 if ( $viewable ) { 93 93 94 94 // 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>', 96 96 esc_url( $preview_url ), 97 97 __( 'Preview post' ) 98 98 ); 99 99 100 100 // 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>', 102 102 esc_url( $permalink ), 103 103 __( 'Preview post' ) 104 104 ); … … 110 110 ); 111 111 112 112 // 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>', 114 114 esc_url( $preview_url ), 115 115 __( 'Preview page' ) 116 116 ); 117 117 118 118 // 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>', 120 120 esc_url( $permalink ), 121 121 __( 'Preview page' ) 122 122 ); … … 378 378 get_current_screen()->set_help_sidebar( 379 379 '<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'tools.php') . '</p>' . 380 380 '<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>' 383 383 ); 384 384 } elseif ( 'page' == $post_type ) { 385 385 $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 “Parent” of the other, creating a group of pages.') . '</p>' . … … 393 393 394 394 get_current_screen()->set_help_sidebar( 395 395 '<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>' 399 399 ); 400 400 } elseif ( 'attachment' == $post_type ) { 401 401 get_current_screen()->add_help_tab( array( … … 410 410 411 411 get_current_screen()->set_help_sidebar( 412 412 '<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>' 415 415 ); 416 416 } 417 417 -
wp-admin/edit-link-form.php
57 57 'content' => 58 58 '<p>' . __( 'You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.' ) . '</p>' . 59 59 '<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’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>' 61 61 ) ); 62 62 63 63 get_current_screen()->set_help_sidebar( 64 64 '<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>' 67 67 ); 68 68 69 69 require_once( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/edit-tags.php
279 279 $help = '<p><strong>' . __( 'For more information:' ) . '</strong></p>'; 280 280 281 281 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>'; 283 283 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>'; 285 285 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>'; 287 287 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>'; 289 289 290 290 get_current_screen()->set_help_sidebar( $help ); 291 291 -
wp-admin/edit.php
221 221 222 222 get_current_screen()->set_help_sidebar( 223 223 '<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>' 226 226 ); 227 227 228 228 } elseif ( 'page' == $post_type ) { … … 242 242 243 243 get_current_screen()->set_help_sidebar( 244 244 '<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>' 247 247 ); 248 248 249 249 } -
wp-admin/export.php
51 51 52 52 get_current_screen()->set_help_sidebar( 53 53 '<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>' 56 56 ); 57 57 58 58 // If the 'download' URL parameter is set, a WXR export file is baked and returned. -
wp-admin/import.php
26 26 27 27 get_current_screen()->set_help_sidebar( 28 28 '<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>' 31 31 ); 32 32 33 33 if ( current_user_can( 'install_plugins' ) ) { -
wp-admin/includes/class-wp-press-this.php
1321 1321 <body class="wp-admin wp-core-ui <?php echo $admin_body_classes . ' ' . $admin_body_class; ?>"> 1322 1322 <div id="adminbar" class="adminbar"> 1323 1323 <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"> 1325 1325 <span class="dashicons dashicons-wordpress"></span> 1326 1326 <span class="current-site-name"><?php bloginfo( 'name' ); ?></span> 1327 1327 </a> … … 1364 1364 if ( isset( $data['v'] ) && $this->version > $data['v'] ) { 1365 1365 ?> 1366 1366 <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' ) ); ?> 1368 1368 </p> 1369 1369 <?php 1370 1370 } -
wp-admin/includes/media.php
2673 2673 $a = $end = ''; 2674 2674 2675 2675 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">'; 2677 2677 $end = '</a>'; 2678 2678 } 2679 2679 ?> -
wp-admin/includes/meta-boxes.php
881 881 <div id="minor-publishing-actions"> 882 882 <div id="preview-action"> 883 883 <?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> 885 885 <?php } ?> 886 886 </div> 887 887 <div class="clear"></div> -
wp-admin/includes/plugin-install.php
565 565 } 566 566 ?></li> 567 567 <?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 »' ); ?></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 »' ); ?></a></li> 569 569 <?php } if ( ! empty( $api->homepage ) ) { ?> 570 <li><a target="_blank" href="<?php echo esc_url( $api->homepage ); ?>"><?php _e( 'Plugin Homepage »' ); ?></a></li>570 <li><a target="_blank" rel="noopener noreferrer" href="<?php echo esc_url( $api->homepage ); ?>"><?php _e( 'Plugin Homepage »' ); ?></a></li> 571 571 <?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 »' ); ?></a></li>572 <li><a target="_blank" rel="noopener noreferrer" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin »' ); ?></a></li> 573 573 <?php } ?> 574 574 </ul> 575 575 <?php if ( ! empty( $api->rating ) ) { ?> … … 593 593 ?> 594 594 <div class="counter-container"> 595 595 <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> 597 597 <span class="counter-back"> 598 598 <span class="counter-bar" style="width: <?php echo 92 * $_rating; ?>px;"></span> 599 599 </span> … … 623 623 ?> 624 624 </ul> 625 625 <?php if ( ! empty( $api->donate_link ) ) { ?> 626 <a target="_blank" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin »' ); ?></a>626 <a target="_blank" rel="noopener noreferrer" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin »' ); ?></a> 627 627 <?php } ?> 628 628 <?php } ?> 629 629 </div> -
wp-admin/includes/post.php
1326 1326 1327 1327 // Encourage a pretty permalink setting 1328 1328 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"; 1330 1330 } 1331 1331 } else { 1332 1332 if ( mb_strlen( $post_name ) > 34 ) { -
wp-admin/index.php
95 95 96 96 $screen->set_help_sidebar( 97 97 '<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>' 100 100 ); 101 101 102 102 include( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/link-manager.php
57 57 58 58 get_current_screen()->set_help_sidebar( 59 59 '<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>' 62 62 ); 63 63 64 64 get_current_screen()->set_screen_reader_content( array( -
wp-admin/media-new.php
53 53 ) ); 54 54 get_current_screen()->set_help_sidebar( 55 55 '<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>' 58 58 ); 59 59 60 60 require_once( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/media.php
80 80 81 81 get_current_screen()->set_help_sidebar( 82 82 '<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>' 85 85 ); 86 86 87 87 require( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/my-sites.php
44 44 45 45 get_current_screen()->set_help_sidebar( 46 46 '<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>' 49 49 ); 50 50 51 51 require_once( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/nav-menus.php
567 567 568 568 get_current_screen()->set_help_sidebar( 569 569 '<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>' 572 572 ); 573 573 574 574 // Get the admin header. -
wp-admin/network.php
63 63 '<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>' . 64 64 '<p>' . __('The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.') . '</p>' . 65 65 '<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>'; 68 68 69 69 get_current_screen()->add_help_tab( array( 70 70 'id' => 'network', … … 74 74 75 75 get_current_screen()->set_help_sidebar( 76 76 '<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>' 80 80 ); 81 81 82 82 include( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/network/index.php
50 50 51 51 get_current_screen()->set_help_sidebar( 52 52 '<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>' 55 55 ); 56 56 57 57 wp_dashboard_setup(); -
wp-admin/network/settings.php
40 40 41 41 get_current_screen()->set_help_sidebar( 42 42 '<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>' 45 45 ); 46 46 47 47 if ( $_POST ) { -
wp-admin/network/site-info.php
31 31 32 32 get_current_screen()->set_help_sidebar( 33 33 '<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>' 36 36 ); 37 37 38 38 $id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0; -
wp-admin/network/site-new.php
29 29 30 30 get_current_screen()->set_help_sidebar( 31 31 '<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>' 34 34 ); 35 35 36 36 if ( isset($_REQUEST['action']) && 'add-site' == $_REQUEST['action'] ) { -
wp-admin/network/site-settings.php
29 29 30 30 get_current_screen()->set_help_sidebar( 31 31 '<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>' 34 34 ); 35 35 36 36 $id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0; -
wp-admin/network/site-themes.php
29 29 30 30 get_current_screen()->set_help_sidebar( 31 31 '<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>' 34 34 ); 35 35 36 36 get_current_screen()->set_screen_reader_content( array( -
wp-admin/network/site-users.php
32 32 33 33 get_current_screen()->set_help_sidebar( 34 34 '<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>' 37 37 ); 38 38 39 39 get_current_screen()->set_screen_reader_content( array( -
wp-admin/network/sites.php
42 42 43 43 get_current_screen()->set_help_sidebar( 44 44 '<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>' 47 47 ); 48 48 49 49 get_current_screen()->set_screen_reader_content( array( -
wp-admin/network/themes.php
215 215 216 216 get_current_screen()->set_help_sidebar( 217 217 '<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>' 220 220 ); 221 221 222 222 get_current_screen()->set_screen_reader_content( array( -
wp-admin/network/upgrade.php
29 29 30 30 get_current_screen()->set_help_sidebar( 31 31 '<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>' 34 34 ); 35 35 36 36 require_once( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/network/user-new.php
26 26 27 27 get_current_screen()->set_help_sidebar( 28 28 '<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>' 31 31 ); 32 32 33 33 if ( isset($_REQUEST['action']) && 'add-user' == $_REQUEST['action'] ) { -
wp-admin/network/users.php
168 168 169 169 get_current_screen()->set_help_sidebar( 170 170 '<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>' 173 173 ); 174 174 175 175 get_current_screen()->set_screen_reader_content( array( -
wp-admin/options-discussion.php
25 25 26 26 get_current_screen()->set_help_sidebar( 27 27 '<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>' 30 30 ); 31 31 32 32 include( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/options-general.php
42 42 43 43 get_current_screen()->set_help_sidebar( 44 44 '<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>' 47 47 ); 48 48 49 49 include( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/options-media.php
31 31 32 32 get_current_screen()->set_help_sidebar( 33 33 '<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>' 36 36 ); 37 37 38 38 include( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/options-permalink.php
41 41 42 42 get_current_screen()->set_help_sidebar( 43 43 '<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>' 47 47 ); 48 48 49 49 add_filter('admin_head', 'options_permalink_add_js'); -
wp-admin/options-reading.php
35 35 36 36 get_current_screen()->set_help_sidebar( 37 37 '<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>' 40 40 ); 41 41 42 42 include( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/options-writing.php
42 42 43 43 get_current_screen()->set_help_sidebar( 44 44 '<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>' 47 47 ); 48 48 49 49 include( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/plugin-editor.php
140 140 141 141 get_current_screen()->set_help_sidebar( 142 142 '<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>' 146 146 ); 147 147 148 148 require_once(ABSPATH . 'wp-admin/admin-header.php'); -
wp-admin/plugin-install.php
79 79 'id' => 'overview', 80 80 'title' => __('Overview'), 81 81 '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>' . 83 83 '<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>' 84 84 85 85 ) ); … … 95 95 96 96 get_current_screen()->set_help_sidebar( 97 97 '<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>' 100 100 ); 101 101 102 102 get_current_screen()->set_screen_reader_content( array( -
wp-admin/plugins.php
374 374 '<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>' . 375 375 '<p>' . sprintf( 376 376 /* translators: %s: WordPress Plugin Directory URL */ 377 __( 'If you would like to see more plugins to choose from, click on the “Add New” 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’re free!' ),377 __( 'If you would like to see more plugins to choose from, click on the “Add New” 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’re free!' ), 378 378 __( 'https://wordpress.org/plugins/' ) 379 379 ) . '</p>' 380 380 ) ); … … 392 392 393 393 get_current_screen()->set_help_sidebar( 394 394 '<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>' 397 397 ); 398 398 399 399 get_current_screen()->set_screen_reader_content( array( -
wp-admin/revision.php
116 116 ) ); 117 117 118 118 $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>'; 121 121 122 122 get_current_screen()->set_help_sidebar( $revisions_sidebar ); 123 123 -
wp-admin/theme-editor.php
30 30 <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> 31 31 <p>' . __('After typing in your edits, click Update File.') . '</p> 32 32 <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>' . 34 34 ( is_network_admin() ? '<p>' . __('Any edits to files from this screen will be reflected on all sites in the network.') . '</p>' : '' ) 35 35 ) ); 36 36 37 37 get_current_screen()->set_help_sidebar( 38 38 '<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>' 44 44 ); 45 45 46 46 wp_reset_vars( array( 'action', 'error', 'file', 'theme' ) ); -
wp-admin/theme-install.php
76 76 $help_overview = 77 77 '<p>' . sprintf( 78 78 /* 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.' ), 80 80 __( 'https://wordpress.org/themes/' ) 81 81 ) . '</p>' . 82 82 '<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>' . … … 105 105 106 106 get_current_screen()->set_help_sidebar( 107 107 '<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>' 110 110 ); 111 111 112 112 include(ABSPATH . 'wp-admin/admin-header.php'); -
wp-admin/themes.php
89 89 if ( is_multisite() ) { 90 90 $help_install = '<p>' . __('Installing themes on Multisite can only be done from the Network Admin section.') . '</p>'; 91 91 } else { 92 $help_install = '<p>' . sprintf( __('If you would like to see more themes to choose from, click on the “Add New” 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’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 “Add New” 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’re free!'), __( 'https://wordpress.org/themes/' ) ) . '</p>'; 93 93 } 94 94 95 95 get_current_screen()->add_help_tab( array( … … 115 115 116 116 get_current_screen()->set_help_sidebar( 117 117 '<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>' 120 120 ); 121 121 122 122 if ( current_user_can( 'switch_themes' ) ) { -
wp-admin/tools.php
25 25 26 26 get_current_screen()->set_help_sidebar( 27 27 '<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>' 30 30 ); 31 31 32 32 require_once( ABSPATH . 'wp-admin/admin-header.php' ); -
wp-admin/update-core.php
569 569 570 570 get_current_screen()->set_help_sidebar( 571 571 '<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>' 574 574 ); 575 575 576 576 if ( 'upgrade-core' == $action ) { -
wp-admin/upload.php
63 63 64 64 get_current_screen()->set_help_sidebar( 65 65 '<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>' 68 68 ); 69 69 70 70 $title = __('Media Library'); … … 204 204 205 205 get_current_screen()->set_help_sidebar( 206 206 '<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>' 209 209 ); 210 210 211 211 get_current_screen()->set_screen_reader_content( array( -
wp-admin/user-edit.php
51 51 52 52 get_current_screen()->set_help_sidebar( 53 53 '<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>' 56 56 ); 57 57 58 58 $wp_http_referer = remove_query_arg( array( 'update', 'delete_count', 'user_id' ), $wp_http_referer ); … … 257 257 if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?> 258 258 <tr class="user-comment-shortcuts-wrap"> 259 259 <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> 261 261 </tr> 262 262 <?php endif; ?> 263 263 <tr class="show-admin-bar user-admin-bar-front-wrap"> -
wp-admin/user-new.php
203 203 204 204 get_current_screen()->set_help_sidebar( 205 205 '<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>' 208 208 ); 209 209 210 210 wp_enqueue_script('wp-ajax-response'); -
wp-admin/users.php
64 64 65 65 get_current_screen()->set_help_sidebar( 66 66 '<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>' 70 70 ); 71 71 72 72 get_current_screen()->set_screen_reader_content( array( -
wp-admin/widgets.php
71 71 72 72 get_current_screen()->set_help_sidebar( 73 73 '<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>' 76 76 ); 77 77 78 78 if ( ! current_theme_supports( 'widgets' ) ) { -
wp-content/themes/twentyeleven/inc/theme-options.php
117 117 '<p>' . __( 'Remember to click "Save Changes" to save any changes you have made to the theme options.', 'twentyeleven' ) . '</p>'; 118 118 119 119 $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>'; 122 122 123 123 $screen = get_current_screen(); 124 124 -
wp-includes/functions.php
5197 5197 ?> 5198 5198 <div class="wp-auth-fallback"> 5199 5199 <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> 5201 5201 <?php _e('The login page will open in a new window. After logging in you can close it and return to this page.'); ?></p> 5202 5202 </div> 5203 5203 </div> -
wp-includes/media-template.php
518 518 <# } #> 519 519 520 520 <# if ( data.can.save && data.sizes ) { #> 521 <a class="edit-attachment" href="{{ data.editLink }}&image-editor" target="_blank" ><?php _e( 'Edit Image' ); ?></a>521 <a class="edit-attachment" href="{{ data.editLink }}&image-editor" target="_blank" rel="noopener noreferrer"><?php _e( 'Edit Image' ); ?></a> 522 522 <# } #> 523 523 <# } #> 524 524 -
wp-includes/ms-load.php
472 472 } 473 473 $msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> '; 474 474 /* 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.' ), 476 476 __( 'https://codex.wordpress.org/Debugging_a_WordPress_Network' ) 477 477 ); 478 478 $msg .= ' ' . __( 'If you’re still stuck with this message, then check that your database contains the following tables:' ) . '</p><ul>';