Ticket #27115: 27115.codex.diff
File 27115.codex.diff, 78.9 KB (added by , 10 years ago) |
---|
-
src/readme.html
49 49 </ol> 50 50 51 51 <h1>Migrating from other systems</h1> 52 <p>WordPress can <a href="http ://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php" title="Import to WordPress">our import tools</a>.</p>52 <p>WordPress can <a href="https://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php" title="Import to WordPress">our import tools</a>.</p> 53 53 54 54 <h1>System Requirements</h1> 55 55 <ul> … … 66 66 <h1>Online Resources</h1> 67 67 <p>If you have any questions that aren’t addressed in this document, please take advantage of WordPress’ numerous online resources:</p> 68 68 <dl> 69 <dt><a href="http ://codex.wordpress.org/">The WordPress Codex</a></dt>69 <dt><a href="https://codex.wordpress.org/">The WordPress Codex</a></dt> 70 70 <dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd> 71 71 <dt><a href="https://wordpress.org/news/">The WordPress Blog</a></dt> 72 72 <dd>This is where you’ll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd> … … 74 74 <dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd> 75 75 <dt><a href="https://wordpress.org/support/">WordPress Support Forums</a></dt> 76 76 <dd>If you’ve looked everywhere and still can’t find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd> 77 <dt><a href="http ://codex.wordpress.org/IRC">WordPress <abbr title="Internet Relay Chat">IRC</abbr> Channel</a></dt>77 <dt><a href="https://codex.wordpress.org/IRC">WordPress <abbr title="Internet Relay Chat">IRC</abbr> Channel</a></dt> 78 78 <dd>There is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd> 79 79 </dl> 80 80 81 81 <h1>Final Notes</h1> 82 82 <ul> 83 83 <li>If you have any suggestions, ideas, or comments, or if you (gasp!) found a bug, join us in the <a href="https://wordpress.org/support/">Support Forums</a>.</li> 84 <li>WordPress has a robust plugin <abbr title="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="http ://codex.wordpress.org/Plugin_API" title="WordPress plugin API">plugin documentation in the Codex</a>. You shouldn’t modify any of the core code.</li>84 <li>WordPress has a robust plugin <abbr title="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="https://codex.wordpress.org/Plugin_API" title="WordPress plugin API">plugin documentation in the Codex</a>. You shouldn’t modify any of the core code.</li> 85 85 </ul> 86 86 87 87 <h1>Share the Love</h1> -
src/wp-admin/credits.php
104 104 echo '<p class="about-description">' . sprintf( __( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ), 105 105 'https://wordpress.org/about/', 106 106 /* translators: Url to the codex documentation on contributing to WordPress used on the credits page */ 107 __( 'http ://codex.wordpress.org/Contributing_to_WordPress' ) ) . '</p>';107 __( 'https://codex.wordpress.org/Contributing_to_WordPress' ) ) . '</p>'; 108 108 include( ABSPATH . 'wp-admin/admin-footer.php' ); 109 109 exit; 110 110 } -
src/wp-admin/custom-header.php
120 120 121 121 get_current_screen()->set_help_sidebar( 122 122 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 123 '<p>' . __( '<a href="http ://codex.wordpress.org/Appearance_Header_Screen" target="_blank">Documentation on Custom Header</a>' ) . '</p>' .123 '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Header_Screen" target="_blank">Documentation on Custom Header</a>' ) . '</p>' . 124 124 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 125 125 ); 126 126 } -
src/wp-admin/options-reading.php
45 45 */ 46 46 function options_reading_blog_charset() { 47 47 echo '<input name="blog_charset" type="text" id="blog_charset" value="' . esc_attr( get_option( 'blog_charset' ) ) . '" class="regular-text" />'; 48 echo '<p class="description">' . __( 'The <a href="http ://codex.wordpress.org/Glossary#Character_set">character encoding</a> of your site (UTF-8 is recommended)' ) . '</p>';48 echo '<p class="description">' . __( 'The <a href="https://codex.wordpress.org/Glossary#Character_set">character encoding</a> of your site (UTF-8 is recommended)' ) . '</p>'; 49 49 } 50 50 51 51 get_current_screen()->add_help_tab( array( … … 66 66 67 67 get_current_screen()->set_help_sidebar( 68 68 '<p><strong>' . __('For more information:') . '</strong></p>' . 69 '<p>' . __('<a href="http ://codex.wordpress.org/Settings_Reading_Screen" target="_blank">Documentation on Reading Settings</a>') . '</p>' .69 '<p>' . __('<a href="https://codex.wordpress.org/Settings_Reading_Screen" target="_blank">Documentation on Reading Settings</a>') . '</p>' . 70 70 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 71 71 ); 72 72 -
src/wp-admin/install.php
167 167 $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' ); 168 168 169 169 if ( !$mysql_compat && !$php_compat ) 170 $compat = sprintf( __( 'You cannot install because <a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.' ), $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version );170 $compat = sprintf( __( 'You cannot install because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.' ), $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ); 171 171 elseif ( !$php_compat ) 172 $compat = sprintf( __( 'You cannot install because <a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.' ), $wp_version, $required_php_version, $php_version );172 $compat = sprintf( __( 'You cannot install because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.' ), $wp_version, $required_php_version, $php_version ); 173 173 elseif ( !$mysql_compat ) 174 $compat = sprintf( __( 'You cannot install because <a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.' ), $wp_version, $required_mysql_version, $mysql_version );174 $compat = sprintf( __( 'You cannot install because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.' ), $wp_version, $required_mysql_version, $mysql_version ); 175 175 176 176 if ( !$mysql_compat || !$php_compat ) { 177 177 display_header(); -
src/wp-admin/widgets.php
70 70 71 71 get_current_screen()->set_help_sidebar( 72 72 '<p><strong>' . __('For more information:') . '</strong></p>' . 73 '<p>' . __('<a href="http ://codex.wordpress.org/Appearance_Widgets_Screen" target="_blank">Documentation on Widgets</a>') . '</p>' .73 '<p>' . __('<a href="https://codex.wordpress.org/Appearance_Widgets_Screen" target="_blank">Documentation on Widgets</a>') . '</p>' . 74 74 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 75 75 ); 76 76 77 77 if ( ! current_theme_supports( 'widgets' ) ) { 78 wp_die( __( 'The theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please <a href="http ://codex.wordpress.org/Widgetizing_Themes">follow these instructions</a>.' ) );78 wp_die( __( 'The theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please <a href="https://codex.wordpress.org/Widgetizing_Themes">follow these instructions</a>.' ) ); 79 79 } 80 80 81 81 // These are the widgets grouped by sidebar -
src/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="http ://codex.wordpress.org/Media_Add_New_Screen" target="_blank">Documentation on Uploading Media Files</a>') . '</p>' .56 '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen" target="_blank">Documentation on Uploading Media Files</a>') . '</p>' . 57 57 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 58 58 ); 59 59 -
src/wp-admin/index.php
85 85 86 86 $screen->set_help_sidebar( 87 87 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 88 '<p>' . __( '<a href="http ://codex.wordpress.org/Dashboard_Screen" target="_blank">Documentation on Dashboard</a>' ) . '</p>' .88 '<p>' . __( '<a href="https://codex.wordpress.org/Dashboard_Screen" target="_blank">Documentation on Dashboard</a>' ) . '</p>' . 89 89 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 90 90 ); 91 91 -
src/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="http ://codex.wordpress.org/Settings_Media_Screen" target="_blank">Documentation on Media Settings</a>') . '</p>' .34 '<p>' . __('<a href="https://codex.wordpress.org/Settings_Media_Screen" target="_blank">Documentation on Media Settings</a>') . '</p>' . 35 35 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 36 36 ); 37 37 -
src/wp-admin/update-core.php
58 58 $mysql_compat = version_compare( $mysql_version, $update->mysql_version, '>=' ); 59 59 60 60 if ( !$mysql_compat && !$php_compat ) 61 $message = sprintf( __('You cannot update because <a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $update->current, $update->php_version, $update->mysql_version, $php_version, $mysql_version );61 $message = sprintf( __('You cannot update because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $update->current, $update->php_version, $update->mysql_version, $php_version, $mysql_version ); 62 62 elseif ( !$php_compat ) 63 $message = sprintf( __('You cannot update because <a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.'), $update->current, $update->php_version, $php_version );63 $message = sprintf( __('You cannot update because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.'), $update->current, $update->php_version, $php_version ); 64 64 elseif ( !$mysql_compat ) 65 $message = sprintf( __('You cannot update because <a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.'), $update->current, $update->mysql_version, $mysql_version );65 $message = sprintf( __('You cannot update because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.'), $update->current, $update->mysql_version, $mysql_version ); 66 66 else 67 $message = sprintf(__('You can update to <a href="http ://codex.wordpress.org/Version_%1$s">WordPress %2$s</a> automatically or download the package and install it manually:'), $update->current, $version_string);67 $message = sprintf(__('You can update to <a href="https://codex.wordpress.org/Version_%1$s">WordPress %2$s</a> automatically or download the package and install it manually:'), $update->current, $version_string); 68 68 if ( !$mysql_compat || !$php_compat ) 69 69 $show_buttons = false; 70 70 } … … 163 163 echo '</h3>'; 164 164 } else { 165 165 echo '<div class="updated inline"><p>'; 166 _e('<strong>Important:</strong> before updating, please <a href="http ://codex.wordpress.org/WordPress_Backups">back up your database and files</a>. For help with updates, visit the <a href="http://codex.wordpress.org/Updating_WordPress">Updating WordPress</a> Codex page.');166 _e('<strong>Important:</strong> before updating, please <a href="https://codex.wordpress.org/WordPress_Backups">back up your database and files</a>. For help with updates, visit the <a href="https://codex.wordpress.org/Updating_WordPress">Updating WordPress</a> Codex page.'); 167 167 echo '</p></div>'; 168 168 169 169 echo '<h3 class="response">'; … … 301 301 ?> 302 302 <h3><?php _e( 'Themes' ); ?></h3> 303 303 <p><?php _e( 'The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.' ); ?></p> 304 <p><?php printf( __( '<strong>Please Note:</strong> Any customizations you have made to theme files will be lost. Please consider using <a href="%s">child themes</a> for modifications.' ), __( 'http ://codex.wordpress.org/Child_Themes' ) ); ?></p>304 <p><?php printf( __( '<strong>Please Note:</strong> Any customizations you have made to theme files will be lost. Please consider using <a href="%s">child themes</a> for modifications.' ), __( 'https://codex.wordpress.org/Child_Themes' ) ); ?></p> 305 305 <form method="post" action="<?php echo esc_url( $form_action ); ?>" name="upgrade-themes" class="upgrade"> 306 306 <?php wp_nonce_field('upgrade-core'); ?> 307 307 <p><input id="upgrade-themes" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p> … … 496 496 497 497 get_current_screen()->set_help_sidebar( 498 498 '<p><strong>' . __('For more information:') . '</strong></p>' . 499 '<p>' . __( '<a href="http ://codex.wordpress.org/Dashboard_Updates_Screen" target="_blank">Documentation on Updating WordPress</a>' ) . '</p>' .499 '<p>' . __( '<a href="https://codex.wordpress.org/Dashboard_Updates_Screen" target="_blank">Documentation on Updating WordPress</a>' ) . '</p>' . 500 500 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 501 501 ); 502 502 -
src/wp-admin/admin-ajax.php
5 5 * @package WordPress 6 6 * @subpackage Administration 7 7 * 8 * @link http ://codex.wordpress.org/AJAX_in_Plugins8 * @link https://codex.wordpress.org/AJAX_in_Plugins 9 9 */ 10 10 11 11 /** -
src/wp-admin/options-writing.php
48 48 49 49 get_current_screen()->set_help_sidebar( 50 50 '<p><strong>' . __('For more information:') . '</strong></p>' . 51 '<p>' . __('<a href="http ://codex.wordpress.org/Settings_Writing_Screen" target="_blank">Documentation on Writing Settings</a>') . '</p>' .51 '<p>' . __('<a href="https://codex.wordpress.org/Settings_Writing_Screen" target="_blank">Documentation on Writing Settings</a>') . '</p>' . 52 52 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 53 53 ); 54 54 … … 174 174 175 175 <?php if ( 1 == get_option('blog_public') ) : ?> 176 176 177 <p><label for="ping_sites"><?php _e('When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href="http ://codex.wordpress.org/Update_Services">Update Services</a> on the Codex. Separate multiple service <abbr title="Universal Resource Locator">URL</abbr>s with line breaks.') ?></label></p>177 <p><label for="ping_sites"><?php _e('When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href="https://codex.wordpress.org/Update_Services">Update Services</a> on the Codex. Separate multiple service <abbr title="Universal Resource Locator">URL</abbr>s with line breaks.') ?></label></p> 178 178 179 179 <textarea name="ping_sites" id="ping_sites" class="large-text code" rows="3"><?php echo esc_textarea( get_option('ping_sites') ); ?></textarea> 180 180 181 181 <?php else : ?> 182 182 183 <p><?php printf(__('WordPress is not notifying any <a href="http ://codex.wordpress.org/Update_Services">Update Services</a> because of your site’s <a href="%s">visibility settings</a>.'), 'options-reading.php'); ?></p>183 <p><?php printf(__('WordPress is not notifying any <a href="https://codex.wordpress.org/Update_Services">Update Services</a> because of your site’s <a href="%s">visibility settings</a>.'), 'options-reading.php'); ?></p> 184 184 185 185 <?php endif; ?> 186 186 <?php } // multisite ?> -
src/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="http ://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' .83 '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' . 84 84 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 85 85 ); 86 86 -
src/wp-admin/edit.php
208 208 209 209 get_current_screen()->set_help_sidebar( 210 210 '<p><strong>' . __('For more information:') . '</strong></p>' . 211 '<p>' . __('<a href="http ://codex.wordpress.org/Posts_Screen" target="_blank">Documentation on Managing Posts</a>') . '</p>' .211 '<p>' . __('<a href="https://codex.wordpress.org/Posts_Screen" target="_blank">Documentation on Managing Posts</a>') . '</p>' . 212 212 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 213 213 ); 214 214 … … 229 229 230 230 get_current_screen()->set_help_sidebar( 231 231 '<p><strong>' . __('For more information:') . '</strong></p>' . 232 '<p>' . __('<a href="http ://codex.wordpress.org/Pages_Screen" target="_blank">Documentation on Managing Pages</a>') . '</p>' .232 '<p>' . __('<a href="https://codex.wordpress.org/Pages_Screen" target="_blank">Documentation on Managing Pages</a>') . '</p>' . 233 233 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 234 234 ); 235 235 } -
src/wp-admin/network.php
120 120 '<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>' . 121 121 '<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>' . 122 122 '<p><strong>' . __('For more information:') . '</strong></p>' . 123 '<p>' . __('<a href="http ://codex.wordpress.org/Create_A_Network" target="_blank">Documentation on Creating a Network</a>') . '</p>' .124 '<p>' . __('<a href="http ://codex.wordpress.org/Tools_Network_Screen" target="_blank">Documentation on the Network Screen</a>') . '</p>';123 '<p>' . __('<a href="https://codex.wordpress.org/Create_A_Network" target="_blank">Documentation on Creating a Network</a>') . '</p>' . 124 '<p>' . __('<a href="https://codex.wordpress.org/Tools_Network_Screen" target="_blank">Documentation on the Network Screen</a>') . '</p>'; 125 125 126 126 get_current_screen()->add_help_tab( array( 127 127 'id' => 'network', … … 131 131 132 132 get_current_screen()->set_help_sidebar( 133 133 '<p><strong>' . __('For more information:') . '</strong></p>' . 134 '<p>' . __('<a href="http ://codex.wordpress.org/Create_A_Network" target="_blank">Documentation on Creating a Network</a>') . '</p>' .135 '<p>' . __('<a href="http ://codex.wordpress.org/Tools_Network_Screen" target="_blank">Documentation on the Network Screen</a>') . '</p>' .134 '<p>' . __('<a href="https://codex.wordpress.org/Create_A_Network" target="_blank">Documentation on Creating a Network</a>') . '</p>' . 135 '<p>' . __('<a href="https://codex.wordpress.org/Tools_Network_Screen" target="_blank">Documentation on the Network Screen</a>') . '</p>' . 136 136 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 137 137 ); 138 138 -
src/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="http ://codex.wordpress.org/Tools_Screen" target="_blank">Documentation on Tools</a>') . '</p>' .28 '<p>' . __('<a href="https://codex.wordpress.org/Tools_Screen" target="_blank">Documentation on Tools</a>') . '</p>' . 29 29 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 30 30 ); 31 31 -
src/wp-admin/setup-config.php
136 136 <p> 137 137 <?php _e( 'We’re going to use this information to create a <code>wp-config.php</code> file.' ); ?> 138 138 <strong><?php _e( "If for any reason this automatic file creation doesn’t work, don’t worry. All this does is fill in the database information to a configuration file. You may also simply open <code>wp-config-sample.php</code> in a text editor, fill in your information, and save it as <code>wp-config.php</code>." ); ?></strong> 139 <?php _e( "Need more help? <a href='http ://codex.wordpress.org/Editing_wp-config.php'>We got it</a>." ); ?>139 <?php _e( "Need more help? <a href='https://codex.wordpress.org/Editing_wp-config.php'>We got it</a>." ); ?> 140 140 </p> 141 141 <p><?php _e( "In all likelihood, these items were supplied to you by your Web Host. If you do not have this information, then you will need to contact them before you can continue. If you’re all ready…" ); ?></p> 142 142 -
src/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="http ://codex.wordpress.org/Links_Screen" target="_blank">Documentation on Managing Links</a>') . '</p>' .60 '<p>' . __('<a href="https://codex.wordpress.org/Links_Screen" target="_blank">Documentation on Managing Links</a>') . '</p>' . 61 61 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 62 62 ); 63 63 -
src/wp-admin/nav-menus.php
541 541 542 542 get_current_screen()->set_help_sidebar( 543 543 '<p><strong>' . __('For more information:') . '</strong></p>' . 544 '<p>' . __('<a href="http ://codex.wordpress.org/Appearance_Menus_Screen" target="_blank">Documentation on Menus</a>') . '</p>' .544 '<p>' . __('<a href="https://codex.wordpress.org/Appearance_Menus_Screen" target="_blank">Documentation on Menus</a>') . '</p>' . 545 545 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 546 546 ); 547 547 -
src/wp-admin/edit-link-form.php
62 62 63 63 get_current_screen()->set_help_sidebar( 64 64 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 65 '<p>' . __( '<a href="http ://codex.wordpress.org/Links_Add_New_Screen" target="_blank">Documentation on Creating Links</a>' ) . '</p>' .65 '<p>' . __( '<a href="https://codex.wordpress.org/Links_Add_New_Screen" target="_blank">Documentation on Creating Links</a>' ) . '</p>' . 66 66 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 67 67 ); 68 68 -
src/wp-admin/upload.php
58 58 59 59 get_current_screen()->set_help_sidebar( 60 60 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 61 '<p>' . __( '<a href="http ://codex.wordpress.org/Media_Library_Screen" target="_blank">Documentation on Media Library</a>' ) . '</p>' .61 '<p>' . __( '<a href="https://codex.wordpress.org/Media_Library_Screen" target="_blank">Documentation on Media Library</a>' ) . '</p>' . 62 62 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 63 63 ); 64 64 … … 226 226 227 227 get_current_screen()->set_help_sidebar( 228 228 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 229 '<p>' . __( '<a href="http ://codex.wordpress.org/Media_Library_Screen" target="_blank">Documentation on Media Library</a>' ) . '</p>' .229 '<p>' . __( '<a href="https://codex.wordpress.org/Media_Library_Screen" target="_blank">Documentation on Media Library</a>' ) . '</p>' . 230 230 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 231 231 ); 232 232 -
src/wp-admin/edit-form-advanced.php
304 304 get_current_screen()->set_help_sidebar( 305 305 '<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'options-writing.php') . '</p>' . 306 306 '<p><strong>' . __('For more information:') . '</strong></p>' . 307 '<p>' . __('<a href="http ://codex.wordpress.org/Posts_Add_New_Screen" target="_blank">Documentation on Writing and Editing Posts</a>') . '</p>' .307 '<p>' . __('<a href="https://codex.wordpress.org/Posts_Add_New_Screen" target="_blank">Documentation on Writing and Editing Posts</a>') . '</p>' . 308 308 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 309 309 ); 310 310 } elseif ( 'page' == $post_type ) { … … 319 319 320 320 get_current_screen()->set_help_sidebar( 321 321 '<p><strong>' . __('For more information:') . '</strong></p>' . 322 '<p>' . __('<a href="http ://codex.wordpress.org/Pages_Add_New_Screen" target="_blank">Documentation on Adding New Pages</a>') . '</p>' .323 '<p>' . __('<a href="http ://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank">Documentation on Editing Pages</a>') . '</p>' .322 '<p>' . __('<a href="https://codex.wordpress.org/Pages_Add_New_Screen" target="_blank">Documentation on Adding New Pages</a>') . '</p>' . 323 '<p>' . __('<a href="https://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank">Documentation on Editing Pages</a>') . '</p>' . 324 324 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 325 325 ); 326 326 } elseif ( 'attachment' == $post_type ) { … … 336 336 337 337 get_current_screen()->set_help_sidebar( 338 338 '<p><strong>' . __('For more information:') . '</strong></p>' . 339 '<p>' . __('<a href="http ://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' .339 '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' . 340 340 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 341 341 ); 342 342 } 343 343 344 344 if ( 'post' == $post_type || 'page' == $post_type ) { 345 345 $inserting_media = '<p>' . __( 'You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.' ) . '</p>'; 346 $inserting_media .= '<p>' . __( 'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Please refer to the Codex to <a href="http ://codex.wordpress.org/Embeds">learn more about embeds</a>.' ) . '</p>';346 $inserting_media .= '<p>' . __( 'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Please refer to the Codex to <a href="https://codex.wordpress.org/Embeds">learn more about embeds</a>.' ) . '</p>'; 347 347 348 348 get_current_screen()->add_help_tab( array( 349 349 'id' => 'inserting-media', … … 357 357 $publish_box .= '<ul><li>' . __('<strong>Publish</strong> - You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.') . '</li>'; 358 358 359 359 if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) { 360 $publish_box .= '<li>' . __( '<strong>Format</strong> - Post Formats designate how your theme will display a specific post. For example, you could have a <em>standard</em> blog post with a title and paragraphs, or a short <em>aside</em> that omits the title and contains a short text blurb. Please refer to the Codex for <a href="http ://codex.wordpress.org/Post_Formats#Supported_Formats">descriptions of each post format</a>. Your theme could enable all or some of 10 possible formats.' ) . '</li>';360 $publish_box .= '<li>' . __( '<strong>Format</strong> - Post Formats designate how your theme will display a specific post. For example, you could have a <em>standard</em> blog post with a title and paragraphs, or a short <em>aside</em> that omits the title and contains a short text blurb. Please refer to the Codex for <a href="https://codex.wordpress.org/Post_Formats#Supported_Formats">descriptions of each post format</a>. Your theme could enable all or some of 10 possible formats.' ) . '</li>'; 361 361 } 362 362 363 363 if ( current_theme_supports( 'post-thumbnails' ) && post_type_supports( 'post', 'thumbnail' ) ) { -
src/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="http ://codex.wordpress.org/Users_Your_Profile_Screen" target="_blank">Documentation on User Profiles</a>') . '</p>' .54 '<p>' . __('<a href="https://codex.wordpress.org/Users_Your_Profile_Screen" target="_blank">Documentation on User Profiles</a>') . '</p>' . 55 55 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 56 56 ); 57 57 … … 273 273 if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?> 274 274 <tr class="user-comment-shortcuts-wrap"> 275 275 <th scope="row"><label for="comment_shortcuts"><?php _e( 'Keyboard Shortcuts' ); ?></label></th> 276 <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="http ://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">More information</a>'); ?></td>276 <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> 277 277 </tr> 278 278 <?php endif; ?> 279 279 <tr class="show-admin-bar user-admin-bar-front-wrap"> -
src/wp-admin/plugin-install.php
82 82 83 83 get_current_screen()->set_help_sidebar( 84 84 '<p><strong>' . __('For more information:') . '</strong></p>' . 85 '<p>' . __('<a href="http ://codex.wordpress.org/Plugins_Add_New_Screen" target="_blank">Documentation on Installing Plugins</a>') . '</p>' .85 '<p>' . __('<a href="https://codex.wordpress.org/Plugins_Add_New_Screen" target="_blank">Documentation on Installing Plugins</a>') . '</p>' . 86 86 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 87 87 ); 88 88 -
src/wp-admin/comment.php
56 56 57 57 get_current_screen()->set_help_sidebar( 58 58 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 59 '<p>' . __( '<a href="http ://codex.wordpress.org/Administration_Screens#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' .59 '<p>' . __( '<a href="https://codex.wordpress.org/Administration_Screens#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' . 60 60 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 61 61 ); 62 62 -
src/wp-admin/options-general.php
101 101 102 102 get_current_screen()->set_help_sidebar( 103 103 '<p><strong>' . __('For more information:') . '</strong></p>' . 104 '<p>' . __('<a href="http ://codex.wordpress.org/Settings_General_Screen" target="_blank">Documentation on General Settings</a>') . '</p>' .104 '<p>' . __('<a href="https://codex.wordpress.org/Settings_General_Screen" target="_blank">Documentation on General Settings</a>') . '</p>' . 105 105 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 106 106 ); 107 107 … … 132 132 <tr> 133 133 <th scope="row"><label for="home"><?php _e('Site Address (URL)') ?></label></th> 134 134 <td><input name="home" type="url" id="home" value="<?php form_option( 'home' ); ?>"<?php disabled( defined( 'WP_HOME' ) ); ?> class="regular-text code<?php if ( defined( 'WP_HOME' ) ) echo ' disabled' ?>" /> 135 <p class="description"><?php _e('Enter the address here if you want your site homepage <a href="http ://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">to be different from the directory</a> you installed WordPress.'); ?></p></td>135 <p class="description"><?php _e('Enter the address here if you want your site homepage <a href="https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">to be different from the directory</a> you installed WordPress.'); ?></p></td> 136 136 </tr> 137 137 <tr> 138 138 <th scope="row"><label for="admin_email"><?php _e('E-mail Address') ?> </label></th> … … 310 310 checked( $custom ); 311 311 echo '/> ' . __('Custom:') . ' </label><input type="text" name="time_format_custom" value="' . esc_attr( get_option('time_format') ) . '" class="small-text" /> <span class="example"> ' . date_i18n( get_option('time_format') ) . "</span> <span class='spinner'></span>\n"; 312 312 313 echo "\t<p>" . __('<a href="http ://codex.wordpress.org/Formatting_Date_and_Time">Documentation on date and time formatting</a>.') . "</p>\n";313 echo "\t<p>" . __('<a href="https://codex.wordpress.org/Formatting_Date_and_Time">Documentation on date and time formatting</a>.') . "</p>\n"; 314 314 ?> 315 315 </fieldset> 316 316 </td> -
src/wp-admin/theme-install.php
91 91 92 92 get_current_screen()->set_help_sidebar( 93 93 '<p><strong>' . __('For more information:') . '</strong></p>' . 94 '<p>' . __('<a href="http ://codex.wordpress.org/Using_Themes#Adding_New_Themes" target="_blank">Documentation on Adding New Themes</a>') . '</p>' .94 '<p>' . __('<a href="https://codex.wordpress.org/Using_Themes#Adding_New_Themes" target="_blank">Documentation on Adding New Themes</a>') . '</p>' . 95 95 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 96 96 ); 97 97 -
src/wp-admin/about.php
100 100 <div class="last-feature"> 101 101 <svg viewBox="-30 -30 160 160"><path d="M35.3,26.5H5.9c-1.5,0-2.9-0.6-4.1-1.7C0.6,23.6,0,22.2,0,20.6c0-1.6,0.6-3,1.7-4.1c1.2-1.2,2.5-1.7,4.1-1.7h29.4 c1.6,0,3,0.6,4.1,1.7c1.2,1.2,1.7,2.5,1.7,4.1c0,1.6-0.6,3-1.7,4.1C38.3,25.9,36.9,26.5,35.3,26.5z M68.9,77.7 c-1.2,1.2-2.5,1.7-4.1,1.7H17.6c-1.6,0-3-0.6-4.1-1.7c-1.2-1.2-1.7-2.5-1.7-4.1V38.2c0-1.6,0.6-3,1.7-4.1c1.2-1.2,2.5-1.7,4.1-1.7 h47.1c1.6,0,3,0.6,4.1,1.7c1.2,1.2,1.7,2.5,1.7,4.1v35.3C70.6,75.1,70,76.5,68.9,77.7z M76.5,61.8L100,85.3V26.5L76.5,50V61.8z"/></svg> 102 102 <h4><?php _e( 'Vine embeds' ); ?></h4> 103 <p><?php printf( __( 'Embedding videos from Vine is as simple as pasting a URL onto its own line in a post. See the <a href="%s">full list</a> of supported embeds.' ), 'http ://codex.wordpress.org/Embeds' ); ?></p>103 <p><?php printf( __( 'Embedding videos from Vine is as simple as pasting a URL onto its own line in a post. See the <a href="%s">full list</a> of supported embeds.' ), 'https://codex.wordpress.org/Embeds' ); ?></p> 104 104 </div> 105 105 106 106 <div> -
src/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="http ://codex.wordpress.org/Settings_Permalinks_Screen" target="_blank">Documentation on Permalinks Settings</a>') . '</p>' .45 '<p>' . __('<a href="http ://codex.wordpress.org/Using_Permalinks" target="_blank">Documentation on Using Permalinks</a>') . '</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 46 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 47 47 ); 48 48 … … 180 180 <form name="form" action="options-permalink.php" method="post"> 181 181 <?php wp_nonce_field('update-permalink') ?> 182 182 183 <p><?php _e('By default WordPress uses web <abbr title="Universal Resource Locator">URL</abbr>s which have question marks and lots of numbers in them; however, WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="http ://codex.wordpress.org/Using_Permalinks">number of tags are available</a>, and here are some examples to get you started.'); ?></p>183 <p><?php _e('By default WordPress uses web <abbr title="Universal Resource Locator">URL</abbr>s which have question marks and lots of numbers in them; however, WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="https://codex.wordpress.org/Using_Permalinks">number of tags are available</a>, and here are some examples to get you started.'); ?></p> 184 184 185 185 <?php 186 186 if ( is_multisite() && !is_subdomain_install() && is_main_site() ) { … … 257 257 <?php if ( $iis7_permalinks ) : 258 258 if ( isset($_POST['submit']) && $permalink_structure && ! $usingpi && ! $writable ) : 259 259 if ( file_exists($home_path . 'web.config') ) : ?> 260 <p><?php _e('If your <code>web.config</code> file were <a href="http ://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your <code>web.config</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this rule inside of the <code>/<configuration>/<system.webServer>/<rewrite>/<rules></code> element in <code>web.config</code> file.') ?></p>260 <p><?php _e('If your <code>web.config</code> file were <a href="https://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your <code>web.config</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this rule inside of the <code>/<configuration>/<system.webServer>/<rewrite>/<rules></code> element in <code>web.config</code> file.') ?></p> 261 261 <form action="options-permalink.php" method="post"> 262 262 <?php wp_nonce_field('update-permalink') ?> 263 263 <p><textarea rows="9" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules() ); ?></textarea></p> 264 264 </form> 265 265 <p><?php _e('If you temporarily make your <code>web.config</code> file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved.') ?></p> 266 266 <?php else : ?> 267 <p><?php _e('If the root directory of your site were <a href="http ://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your <code>web.config</code> file. Create a new file, called <code>web.config</code> in the root directory of your site. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this code into the <code>web.config</code> file.') ?></p>267 <p><?php _e('If the root directory of your site were <a href="https://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your <code>web.config</code> file. Create a new file, called <code>web.config</code> in the root directory of your site. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this code into the <code>web.config</code> file.') ?></p> 268 268 <form action="options-permalink.php" method="post"> 269 269 <?php wp_nonce_field('update-permalink') ?> 270 270 <p><textarea rows="18" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules(true) ); ?></textarea></p> … … 274 274 <?php endif; ?> 275 275 <?php elseif ( ! $is_nginx ) : 276 276 if ( $permalink_structure && ! $usingpi && ! $writable && $update_required ) : ?> 277 <p><?php _e('If your <code>.htaccess</code> file were <a href="http ://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your <code>.htaccess</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all.') ?></p>277 <p><?php _e('If your <code>.htaccess</code> file were <a href="https://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your <code>.htaccess</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all.') ?></p> 278 278 <form action="options-permalink.php" method="post"> 279 279 <?php wp_nonce_field('update-permalink') ?> 280 280 <p><textarea rows="6" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->mod_rewrite_rules() ); ?></textarea></p> -
src/wp-admin/options-discussion.php
43 43 44 44 get_current_screen()->set_help_sidebar( 45 45 '<p><strong>' . __('For more information:') . '</strong></p>' . 46 '<p>' . __('<a href="http ://codex.wordpress.org/Settings_Discussion_Screen" target="_blank">Documentation on Discussion Settings</a>') . '</p>' .46 '<p>' . __('<a href="https://codex.wordpress.org/Settings_Discussion_Screen" target="_blank">Documentation on Discussion Settings</a>') . '</p>' . 47 47 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 48 48 ); 49 49 -
src/wp-admin/includes/dashboard.php
1321 1321 <?php if ( current_user_can( 'manage_options' ) ) : ?> 1322 1322 <li><?php printf( '<a href="%s" class="welcome-icon welcome-comments">' . __( 'Turn comments on or off' ) . '</a>', admin_url( 'options-discussion.php' ) ); ?></li> 1323 1323 <?php endif; ?> 1324 <li><?php printf( '<a href="%s" class="welcome-icon welcome-learn-more">' . __( 'Learn more about getting started' ) . '</a>', __( 'http ://codex.wordpress.org/First_Steps_With_WordPress' ) ); ?></li>1324 <li><?php printf( '<a href="%s" class="welcome-icon welcome-learn-more">' . __( 'Learn more about getting started' ) . '</a>', __( 'https://codex.wordpress.org/First_Steps_With_WordPress' ) ); ?></li> 1325 1325 </ul> 1326 1326 </div> 1327 1327 </div> -
src/wp-admin/includes/update.php
205 205 return false; 206 206 207 207 if ( current_user_can('update_core') ) { 208 $msg = sprintf( __('<a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> is available! <a href="%2$s">Please update now</a>.'), $cur->current, network_admin_url( 'update-core.php' ) );208 $msg = sprintf( __('<a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> is available! <a href="%2$s">Please update now</a>.'), $cur->current, network_admin_url( 'update-core.php' ) ); 209 209 } else { 210 $msg = sprintf( __('<a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> is available! Please notify the site administrator.'), $cur->current );210 $msg = sprintf( __('<a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> is available! Please notify the site administrator.'), $cur->current ); 211 211 } 212 212 echo "<div class='update-nag'>$msg</div>"; 213 213 } -
src/wp-admin/includes/meta-boxes.php
523 523 function post_excerpt_meta_box($post) { 524 524 ?> 525 525 <label class="screen-reader-text" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" id="excerpt"><?php echo $post->post_excerpt; // textarea_escaped ?></textarea> 526 <p><?php _e('Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="http ://codex.wordpress.org/Excerpt" target="_blank">Learn more about manual excerpts.</a>'); ?></p>526 <p><?php _e('Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="https://codex.wordpress.org/Excerpt" target="_blank">Learn more about manual excerpts.</a>'); ?></p> 527 527 <?php 528 528 } 529 529 … … 547 547 548 548 ?> 549 549 <p><label for="trackback_url"><?php _e('Send trackbacks to:'); ?></label> <?php echo $form_trackback; ?><br /> (<?php _e('Separate multiple URLs with spaces'); ?>)</p> 550 <p><?php _e('Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites they’ll be notified automatically using <a href="http ://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">pingbacks</a>, no other action necessary.'); ?></p>550 <p><?php _e('Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites they’ll be notified automatically using <a href="https://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">pingbacks</a>, no other action necessary.'); ?></p> 551 551 <?php 552 552 if ( ! empty($pings) ) 553 553 echo $pings; … … 573 573 list_meta( $metadata ); 574 574 meta_form( $post ); ?> 575 575 </div> 576 <p><?php _e('Custom fields can be used to add extra metadata to a post that you can <a href="http ://codex.wordpress.org/Using_Custom_Fields" target="_blank">use in your theme</a>.'); ?></p>576 <p><?php _e('Custom fields can be used to add extra metadata to a post that you can <a href="https://codex.wordpress.org/Using_Custom_Fields" target="_blank">use in your theme</a>.'); ?></p> 577 577 <?php 578 578 } 579 579 … … 589 589 <input name="advanced_view" type="hidden" value="1" /> 590 590 <p class="meta-options"> 591 591 <label for="comment_status" class="selectit"><input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e( 'Allow comments.' ) ?></label><br /> 592 <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php printf( __( 'Allow <a href="%s" target="_blank">trackbacks and pingbacks</a> on this page.' ), __( 'http ://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' ) ); ?></label>592 <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php printf( __( 'Allow <a href="%s" target="_blank">trackbacks and pingbacks</a> on this page.' ), __( 'https://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' ) ); ?></label> 593 593 <?php 594 594 /** 595 595 * Fires at the end of the Discussion meta box on the post editing screen. -
src/wp-admin/includes/class-wp-themes-list-table.php
213 213 <p><?php echo $theme->display('Description'); ?></p> 214 214 <?php if ( $theme->parent() ) { 215 215 printf( ' <p class="howto">' . __( 'This <a href="%1$s">child theme</a> requires its parent theme, %2$s.' ) . '</p>', 216 __( 'http ://codex.wordpress.org/Child_Themes' ),216 __( 'https://codex.wordpress.org/Child_Themes' ), 217 217 $theme->parent()->display( 'Name' ) ); 218 218 } ?> 219 219 </div> -
src/wp-admin/plugin-editor.php
137 137 138 138 get_current_screen()->set_help_sidebar( 139 139 '<p><strong>' . __('For more information:') . '</strong></p>' . 140 '<p>' . __('<a href="http ://codex.wordpress.org/Plugins_Editor_Screen" target="_blank">Documentation on Editing Plugins</a>') . '</p>' .141 '<p>' . __('<a href="http ://codex.wordpress.org/Writing_a_Plugin" target="_blank">Documentation on Writing Plugins</a>') . '</p>' .140 '<p>' . __('<a href="https://codex.wordpress.org/Plugins_Editor_Screen" target="_blank">Documentation on Editing Plugins</a>') . '</p>' . 141 '<p>' . __('<a href="https://codex.wordpress.org/Writing_a_Plugin" target="_blank">Documentation on Writing Plugins</a>') . '</p>' . 142 142 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 143 143 ); 144 144 … … 262 262 ?> 263 263 </p> 264 264 <?php else : ?> 265 <p><em><?php _e('You need to make this file writable before you can save your changes. See <a href="http ://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.'); ?></em></p>265 <p><em><?php _e('You need to make this file writable before you can save your changes. See <a href="https://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.'); ?></em></p> 266 266 <?php endif; ?> 267 267 </form> 268 268 <br class="clear" /> -
src/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.') . '</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.'), __('http ://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">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="http ://codex.wordpress.org/Theme_Development" target="_blank">Documentation on Theme Development</a>') . '</p>' .40 '<p>' . __('<a href="http ://codex.wordpress.org/Using_Themes" target="_blank">Documentation on Using Themes</a>') . '</p>' .41 '<p>' . __('<a href="http ://codex.wordpress.org/Editing_Files" target="_blank">Documentation on Editing Files</a>') . '</p>' .42 '<p>' . __('<a href="http ://codex.wordpress.org/Template_Tags" target="_blank">Documentation on Template Tags</a>') . '</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 43 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 44 44 ); 45 45 … … 219 219 if ( is_writeable( $file ) ) : 220 220 submit_button( __( 'Update File' ), 'primary', 'submit', true ); 221 221 else : ?> 222 <p><em><?php _e('You need to make this file writable before you can save your changes. See <a href="http ://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.'); ?></em></p>222 <p><em><?php _e('You need to make this file writable before you can save your changes. See <a href="https://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.'); ?></em></p> 223 223 <?php endif; ?> 224 224 </div> 225 225 </form> -
src/wp-admin/custom-background.php
93 93 94 94 get_current_screen()->set_help_sidebar( 95 95 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 96 '<p>' . __( '<a href="http ://codex.wordpress.org/Appearance_Background_Screen" target="_blank">Documentation on Custom Background</a>' ) . '</p>' .96 '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Background_Screen" target="_blank">Documentation on Custom Background</a>' ) . '</p>' . 97 97 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 98 98 ); 99 99 -
src/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="http ://codex.wordpress.org/Revision_Management" target="_blank">Revisions Management</a>' ) . '</p>';119 $revisions_sidebar .= '<p>' . __( '<a href="https://codex.wordpress.org/Revision_Management" target="_blank">Revisions Management</a>' ) . '</p>'; 120 120 $revisions_sidebar .= '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'; 121 121 122 122 get_current_screen()->set_help_sidebar( $revisions_sidebar ); -
src/wp-admin/users.php
58 58 59 59 get_current_screen()->set_help_sidebar( 60 60 '<p><strong>' . __('For more information:') . '</strong></p>' . 61 '<p>' . __('<a href="http ://codex.wordpress.org/Users_Screen" target="_blank">Documentation on Managing Users</a>') . '</p>' .62 '<p>' . __('<a href="http ://codex.wordpress.org/Roles_and_Capabilities" target="_blank">Descriptions of Roles and Capabilities</a>') . '</p>' .61 '<p>' . __('<a href="https://codex.wordpress.org/Users_Screen" target="_blank">Documentation on Managing Users</a>') . '</p>' . 62 '<p>' . __('<a href="https://codex.wordpress.org/Roles_and_Capabilities" target="_blank">Descriptions of Roles and Capabilities</a>') . '</p>' . 63 63 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 64 64 ); 65 65 -
src/wp-admin/network/site-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="http ://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .29 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' . 30 30 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 31 31 ); 32 32 -
src/wp-admin/network/site-info.php
29 29 30 30 get_current_screen()->set_help_sidebar( 31 31 '<p><strong>' . __('For more information:') . '</strong></p>' . 32 '<p>' . __('<a href="http ://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .32 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' . 33 33 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 34 34 ); 35 35 -
src/wp-admin/network/settings.php
61 61 62 62 get_current_screen()->set_help_sidebar( 63 63 '<p><strong>' . __('For more information:') . '</strong></p>' . 64 '<p>' . __('<a href="http ://codex.wordpress.org/Network_Admin_Settings_Screen" target="_blank">Documentation on Network Settings</a>') . '</p>' .64 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Settings_Screen" target="_blank">Documentation on Network Settings</a>') . '</p>' . 65 65 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 66 66 ); 67 67 -
src/wp-admin/network/users.php
239 239 240 240 get_current_screen()->set_help_sidebar( 241 241 '<p><strong>' . __('For more information:') . '</strong></p>' . 242 '<p>' . __('<a href="http ://codex.wordpress.org/Network_Admin_Users_Screen" target="_blank">Documentation on Network Users</a>') . '</p>' .242 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Users_Screen" target="_blank">Documentation on Network Users</a>') . '</p>' . 243 243 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 244 244 ); 245 245 -
src/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="http ://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .32 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' . 33 33 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 34 34 ); 35 35 -
src/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="http ://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .35 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' . 36 36 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 37 37 ); 38 38 -
src/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="http ://codex.wordpress.org/Network_Admin_Users_Screen" target="_blank">Documentation on Network Users</a>') . '</p>' .29 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Users_Screen" target="_blank">Documentation on Network Users</a>') . '</p>' . 30 30 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 31 31 ); 32 32 -
src/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="http ://codex.wordpress.org/Network_Admin" target="_blank">Documentation on the Network Admin</a>') . '</p>' .53 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin" target="_blank">Documentation on the Network Admin</a>') . '</p>' . 54 54 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 55 55 ); 56 56 -
src/wp-admin/network/themes.php
230 230 231 231 get_current_screen()->set_help_sidebar( 232 232 '<p><strong>' . __('For more information:') . '</strong></p>' . 233 '<p>' . __('<a href="http ://codex.wordpress.org/Network_Admin_Themes_Screen" target="_blank">Documentation on Network Themes</a>') . '</p>' .233 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Themes_Screen" target="_blank">Documentation on Network Themes</a>') . '</p>' . 234 234 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 235 235 ); 236 236 -
src/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="http ://codex.wordpress.org/Network_Admin_Updates_Screen" target="_blank">Documentation on Upgrade Network</a>') . '</p>' .32 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Updates_Screen" target="_blank">Documentation on Upgrade Network</a>') . '</p>' . 33 33 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 34 34 ); 35 35 -
src/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="http ://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .45 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' . 46 46 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 47 47 ); 48 48 -
src/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="http ://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .32 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' . 33 33 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 34 34 ); 35 35 -
src/wp-admin/user-new.php
180 180 181 181 get_current_screen()->set_help_sidebar( 182 182 '<p><strong>' . __('For more information:') . '</strong></p>' . 183 '<p>' . __('<a href="http ://codex.wordpress.org/Users_Add_New_Screen" target="_blank">Documentation on Adding New Users</a>') . '</p>' .183 '<p>' . __('<a href="https://codex.wordpress.org/Users_Add_New_Screen" target="_blank">Documentation on Adding New Users</a>') . '</p>' . 184 184 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 185 185 ); 186 186 -
src/wp-admin/edit-comments.php
130 130 131 131 get_current_screen()->set_help_sidebar( 132 132 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 133 '<p>' . __( '<a href="http ://codex.wordpress.org/Administration_Screens#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' .134 '<p>' . __( '<a href="http ://codex.wordpress.org/Comment_Spam" target="_blank">Documentation on Comment Spam</a>' ) . '</p>' .135 '<p>' . __( '<a href="http ://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">Documentation on Keyboard Shortcuts</a>' ) . '</p>' .133 '<p>' . __( '<a href="https://codex.wordpress.org/Administration_Screens#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' . 134 '<p>' . __( '<a href="https://codex.wordpress.org/Comment_Spam" target="_blank">Documentation on Comment Spam</a>' ) . '</p>' . 135 '<p>' . __( '<a href="https://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">Documentation on Keyboard Shortcuts</a>' ) . '</p>' . 136 136 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 137 137 ); 138 138 -
src/wp-admin/my-sites.php
45 45 46 46 get_current_screen()->set_help_sidebar( 47 47 '<p><strong>' . __('For more information:') . '</strong></p>' . 48 '<p>' . __('<a href="http ://codex.wordpress.org/Dashboard_My_Sites_Screen" target="_blank">Documentation on My Sites</a>') . '</p>' .48 '<p>' . __('<a href="https://codex.wordpress.org/Dashboard_My_Sites_Screen" target="_blank">Documentation on My Sites</a>') . '</p>' . 49 49 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 50 50 ); 51 51 -
src/wp-admin/import.php
25 25 26 26 get_current_screen()->set_help_sidebar( 27 27 '<p><strong>' . __('For more information:') . '</strong></p>' . 28 '<p>' . __('<a href="http ://codex.wordpress.org/Tools_Import_Screen" target="_blank">Documentation on Import</a>') . '</p>' .28 '<p>' . __('<a href="https://codex.wordpress.org/Tools_Import_Screen" target="_blank">Documentation on Import</a>') . '</p>' . 29 29 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 30 30 ); 31 31 -
src/wp-admin/edit-tags.php
233 233 $help = '<p><strong>' . __( 'For more information:' ) . '</strong></p>'; 234 234 235 235 if ( 'category' == $taxonomy ) 236 $help .= '<p>' . __( '<a href="http ://codex.wordpress.org/Posts_Categories_Screen" target="_blank">Documentation on Categories</a>' ) . '</p>';236 $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Posts_Categories_Screen" target="_blank">Documentation on Categories</a>' ) . '</p>'; 237 237 elseif ( 'link_category' == $taxonomy ) 238 $help .= '<p>' . __( '<a href="http ://codex.wordpress.org/Links_Link_Categories_Screen" target="_blank">Documentation on Link Categories</a>' ) . '</p>';238 $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Links_Link_Categories_Screen" target="_blank">Documentation on Link Categories</a>' ) . '</p>'; 239 239 else 240 $help .= '<p>' . __( '<a href="http ://codex.wordpress.org/Posts_Tags_Screen" target="_blank">Documentation on Tags</a>' ) . '</p>';240 $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Posts_Tags_Screen" target="_blank">Documentation on Tags</a>' ) . '</p>'; 241 241 242 242 $help .= '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'; 243 243 -
src/wp-admin/plugins.php
375 375 376 376 get_current_screen()->set_help_sidebar( 377 377 '<p><strong>' . __('For more information:') . '</strong></p>' . 378 '<p>' . __('<a href="http ://codex.wordpress.org/Managing_Plugins#Plugin_Management" target="_blank">Documentation on Managing Plugins</a>') . '</p>' .378 '<p>' . __('<a href="https://codex.wordpress.org/Managing_Plugins#Plugin_Management" target="_blank">Documentation on Managing Plugins</a>') . '</p>' . 379 379 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 380 380 ); 381 381 -
src/wp-admin/export.php
50 50 51 51 get_current_screen()->set_help_sidebar( 52 52 '<p><strong>' . __('For more information:') . '</strong></p>' . 53 '<p>' . __('<a href="http ://codex.wordpress.org/Tools_Export_Screen" target="_blank">Documentation on Export</a>') . '</p>' .53 '<p>' . __('<a href="https://codex.wordpress.org/Tools_Export_Screen" target="_blank">Documentation on Export</a>') . '</p>' . 54 54 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 55 55 ); 56 56 -
src/wp-admin/themes.php
87 87 88 88 get_current_screen()->set_help_sidebar( 89 89 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 90 '<p>' . __( '<a href="http ://codex.wordpress.org/Using_Themes" target="_blank">Documentation on Using Themes</a>' ) . '</p>' .90 '<p>' . __( '<a href="https://codex.wordpress.org/Using_Themes" target="_blank">Documentation on Using Themes</a>' ) . '</p>' . 91 91 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 92 92 ); 93 93 -
src/wp-admin/upgrade.php
71 71 72 72 <?php elseif ( !$php_compat || !$mysql_compat ) : 73 73 if ( !$mysql_compat && !$php_compat ) 74 printf( __('You cannot update because <a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version );74 printf( __('You cannot update because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ); 75 75 elseif ( !$php_compat ) 76 printf( __('You cannot update because <a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.'), $wp_version, $required_php_version, $php_version );76 printf( __('You cannot update because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.'), $wp_version, $required_php_version, $php_version ); 77 77 elseif ( !$mysql_compat ) 78 printf( __('You cannot update because <a href="http ://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.'), $wp_version, $required_mysql_version, $mysql_version );78 printf( __('You cannot update because <a href="https://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.'), $wp_version, $required_mysql_version, $mysql_version ); 79 79 ?> 80 80 <?php else : 81 81 switch ( $step ) : -
src/wp-admin/options.php
180 180 if ( $options ) { 181 181 foreach ( $options as $option ) { 182 182 if ( $unregistered ) 183 _deprecated_argument( 'options.php', '2.7', sprintf( __( 'The <code>%1$s</code> setting is unregistered. Unregistered settings are deprecated. See http ://codex.wordpress.org/Settings_API' ), $option, $option_page ) );183 _deprecated_argument( 'options.php', '2.7', sprintf( __( 'The <code>%1$s</code> setting is unregistered. Unregistered settings are deprecated. See https://codex.wordpress.org/Settings_API' ), $option, $option_page ) ); 184 184 185 185 $option = trim( $option ); 186 186 $value = null;