Ticket #47771: 47771.diff
File 47771.diff, 58.0 KB (added by , 5 years ago) |
---|
-
src/readme.html
48 48 </ol> 49 49 50 50 <h2>Migrating from other systems</h2> 51 <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>51 <p>WordPress can <a href="https://wordpress.org/support/article/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 52 53 53 <h2>System Requirements</h2> 54 54 <ul> -
src/wp-admin/_index.php
104 104 105 105 $screen->set_help_sidebar( 106 106 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 107 '<p>' . __( '<a href="https:// codex.wordpress.org/Dashboard_Screen">Documentation on Dashboard</a>' ) . '</p>' .107 '<p>' . __( '<a href="https://wordpress.org/support/article/dashboard-screen/">Documentation on Dashboard</a>' ) . '</p>' . 108 108 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 109 109 ); 110 110 -
src/wp-admin/comment.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/Administration_Screens#Comments">Documentation on Comments</a>' ) . '</p>' .56 '<p>' . __( '<a href="https://wordpress.org/support/article/comments-screen/">Documentation on Comments</a>' ) . '</p>' . 57 57 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 58 58 ); 59 59 -
src/wp-admin/edit-comments.php
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/Administration_Screens#Comments">Documentation on Comments</a>' ) . '</p>' .208 '<p>' . __( '<a href="https:// codex.wordpress.org/Comment_Spam">Documentation on Comment Spam</a>' ) . '</p>' .209 '<p>' . __( '<a href="https:// codex.wordpress.org/Keyboard_Shortcuts">Documentation on Keyboard Shortcuts</a>' ) . '</p>' .207 '<p>' . __( '<a href="https://wordpress.org/support/article/comments-screen/">Documentation on Comments</a>' ) . '</p>' . 208 '<p>' . __( '<a href="https://wordpress.org/support/article/comment-spam/">Documentation on Comment Spam</a>' ) . '</p>' . 209 '<p>' . __( '<a href="https://wordpress.org/support/article/keyboard-shortcuts/">Documentation on Keyboard Shortcuts</a>' ) . '</p>' . 210 210 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 211 211 ); 212 212 -
src/wp-admin/edit-form-advanced.php
311 311 312 312 get_current_screen()->set_help_sidebar( 313 313 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 314 '<p>' . __( '<a href="https:// codex.wordpress.org/Pages_Add_New_Screen">Documentation on Adding New Pages</a>' ) . '</p>' .315 '<p>' . __( '<a href="https:// codex.wordpress.org/Pages_Screen#Editing_Individual_Pages">Documentation on Editing Pages</a>' ) . '</p>' .314 '<p>' . __( '<a href="https://wordpress.org/support/article/pages-add-new-screen/">Documentation on Adding New Pages</a>' ) . '</p>' . 315 '<p>' . __( '<a href="https://wordpress.org/support/article/pages-screen/">Documentation on Editing Pages</a>' ) . '</p>' . 316 316 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 317 317 ); 318 318 } elseif ( 'attachment' == $post_type ) { … … 330 330 331 331 get_current_screen()->set_help_sidebar( 332 332 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 333 '<p>' . __( '<a href="https:// codex.wordpress.org/Media_Add_New_Screen#Edit_Media">Documentation on Edit Media</a>' ) . '</p>' .333 '<p>' . __( '<a href="https://wordpress.org/support/article/media-add-new-screen/">Documentation on Edit Media</a>' ) . '</p>' . 334 334 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 335 335 ); 336 336 } 337 337 338 338 if ( 'post' == $post_type || 'page' == $post_type ) { 339 339 $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>'; 340 $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>';340 $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://wordpress.org/support/article/embeds/">learn more about embeds</a>.' ) . '</p>'; 341 341 342 342 get_current_screen()->add_help_tab( 343 343 array( … … 355 355 '</li>'; 356 356 357 357 if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) { 358 $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>';358 $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://wordpress.org/support/article/post-formats/">descriptions of each post format</a>. Your theme could enable all or some of 10 possible formats.' ) . '</li>'; 359 359 } 360 360 361 361 if ( current_theme_supports( 'post-thumbnails' ) && post_type_supports( 'post', 'thumbnail' ) ) { -
src/wp-admin/edit-tags.php
297 297 $help = '<p><strong>' . __( 'For more information:' ) . '</strong></p>'; 298 298 299 299 if ( 'category' == $taxonomy ) { 300 $help .= '<p>' . __( '<a href="https:// codex.wordpress.org/Posts_Categories_Screen">Documentation on Categories</a>' ) . '</p>';300 $help .= '<p>' . __( '<a href="https://wordpress.org/support/article/posts-categories-screen/">Documentation on Categories</a>' ) . '</p>'; 301 301 } elseif ( 'link_category' == $taxonomy ) { 302 302 $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Links_Link_Categories_Screen">Documentation on Link Categories</a>' ) . '</p>'; 303 303 } else { 304 $help .= '<p>' . __( '<a href="https:// codex.wordpress.org/Posts_Tags_Screen">Documentation on Tags</a>' ) . '</p>';304 $help .= '<p>' . __( '<a href="https://wordpress.org/support/article/posts-tags-screen/">Documentation on Tags</a>' ) . '</p>'; 305 305 } 306 306 307 307 $help .= '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'; -
src/wp-admin/edit.php
257 257 258 258 get_current_screen()->set_help_sidebar( 259 259 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 260 '<p>' . __( '<a href="https:// codex.wordpress.org/Posts_Screen">Documentation on Managing Posts</a>' ) . '</p>' .260 '<p>' . __( '<a href="https://wordpress.org/support/article/administration-screens/#posts-make-some-content">Documentation on Managing Posts</a>' ) . '</p>' . 261 261 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 262 262 ); 263 263 … … 282 282 283 283 get_current_screen()->set_help_sidebar( 284 284 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 285 '<p>' . __( '<a href="https:// codex.wordpress.org/Pages_Screen">Documentation on Managing Pages</a>' ) . '</p>' .285 '<p>' . __( '<a href="https://wordpress.org/support/article/pages-screen/">Documentation on Managing Pages</a>' ) . '</p>' . 286 286 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 287 287 ); 288 288 -
src/wp-admin/export.php
54 54 55 55 get_current_screen()->set_help_sidebar( 56 56 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 57 '<p>' . __( '<a href="https:// codex.wordpress.org/Tools_Export_Screen">Documentation on Export</a>' ) . '</p>' .57 '<p>' . __( '<a href="https://wordpress.org/support/article/tools-export-screen/">Documentation on Export</a>' ) . '</p>' . 58 58 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 59 59 ); 60 60 -
src/wp-admin/import.php
28 28 29 29 get_current_screen()->set_help_sidebar( 30 30 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 31 '<p>' . __( '<a href="https:// codex.wordpress.org/Tools_Import_Screen">Documentation on Import</a>' ) . '</p>' .31 '<p>' . __( '<a href="https://wordpress.org/support/article/tools-import-screen/">Documentation on Import</a>' ) . '</p>' . 32 32 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 33 33 ); 34 34 -
src/wp-admin/includes/dashboard.php
1740 1740 <?php if ( current_user_can( 'manage_options' ) ) : ?> 1741 1741 <li><?php printf( '<a href="%s" class="welcome-icon welcome-comments">' . __( 'Turn comments on or off' ) . '</a>', admin_url( 'options-discussion.php' ) ); ?></li> 1742 1742 <?php endif; ?> 1743 <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>1743 <li><?php printf( '<a href="%s" class="welcome-icon welcome-learn-more">' . __( 'Learn more about getting started' ) . '</a>', __( 'https://wordpress.org/support/article/first-steps-with-wordpress-b/' ) ); ?></li> 1744 1744 </ul> 1745 1745 </div> 1746 1746 </div> -
src/wp-admin/includes/file.php
1811 1811 * The return value can be overridden by defining the `FS_METHOD` constant in `wp-config.php`, 1812 1812 * or filtering via {@see 'filesystem_method'}. 1813 1813 * 1814 * @link https:// codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants1814 * @link https://wordpress.org/support/article/editing-wp-config-php/ 1815 1815 * 1816 1816 * Plugins may define a custom transport handler, See WP_Filesystem(). 1817 1817 * -
src/wp-admin/includes/meta-boxes.php
665 665 printf( 666 666 /* translators: %s: Codex URL */ 667 667 __( 'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="%s">Learn more about manual excerpts</a>.' ), 668 __( 'https:// codex.wordpress.org/Excerpt' )668 __( 'https://wordpress.org/support/article/excerpt/' ) 669 669 ); 670 670 ?> 671 671 </p> … … 702 702 printf( 703 703 /* translators: %s: Codex URL */ 704 704 __( '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="%s">pingbacks</a>, no other action necessary.' ), 705 __( 'https:// codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' )705 __( 'https://wordpress.org/support/article/introduction-to-blogging/#comments' ) 706 706 ); 707 707 ?> 708 708 </p> … … 739 739 printf( 740 740 /* translators: %s: Codex URL */ 741 741 __( 'Custom fields can be used to add extra metadata to a post that you can <a href="%s">use in your theme</a>.' ), 742 __( 'https:// codex.wordpress.org/Using_Custom_Fields' )742 __( 'https://wordpress.org/support/article/custom-fields/' ) 743 743 ); 744 744 ?> 745 745 </p> … … 763 763 printf( 764 764 /* translators: %s: Codex URL */ 765 765 __( 'Allow <a href="%s">trackbacks and pingbacks</a> on this page' ), 766 __( 'https:// codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' )766 __( 'https://wordpress.org/support/article/introduction-to-blogging/#trackbacks' ) 767 767 ); 768 768 ?> 769 769 </label> -
src/wp-admin/includes/ms.php
1166 1166 */ 1167 1167 function get_site_screen_help_sidebar_content() { 1168 1168 return '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 1169 '<p>' . __( '<a href="https:// codex.wordpress.org/Network_Admin_Sites_Screen">Documentation on Site Management</a>' ) . '</p>' .1169 '<p>' . __( '<a href="https://wordpress.org/support/article/network-admin-sites-screen/">Documentation on Site Management</a>' ) . '</p>' . 1170 1170 '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>'; 1171 1171 } -
src/wp-admin/includes/options.php
129 129 */ 130 130 function options_reading_blog_charset() { 131 131 echo '<input name="blog_charset" type="text" id="blog_charset" value="' . esc_attr( get_option( 'blog_charset' ) ) . '" class="regular-text" />'; 132 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>';132 echo '<p class="description">' . __( 'The <a href="https://wordpress.org/support/article/glossary/#character-set">character encoding</a> of your site (UTF-8 is recommended)' ) . '</p>'; 133 133 } -
src/wp-admin/media-new.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/Media_Add_New_Screen">Documentation on Uploading Media Files</a>' ) . '</p>' .60 '<p>' . __( '<a href="https://wordpress.org/support/article/media-add-new-screen/">Documentation on Uploading Media Files</a>' ) . '</p>' . 61 61 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 62 62 ); 63 63 -
src/wp-admin/media.php
93 93 94 94 get_current_screen()->set_help_sidebar( 95 95 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 96 '<p>' . __( '<a href="https:// codex.wordpress.org/Media_Add_New_Screen#Edit_Media">Documentation on Edit Media</a>' ) . '</p>' .96 '<p>' . __( '<a href="https://wordpress.org/support/article/media-add-new-screen/">Documentation on Edit Media</a>' ) . '</p>' . 97 97 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 98 98 ); 99 99 -
src/wp-admin/nav-menus.php
592 592 593 593 get_current_screen()->set_help_sidebar( 594 594 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 595 '<p>' . __( '<a href="https:// codex.wordpress.org/Appearance_Menus_Screen">Documentation on Menus</a>' ) . '</p>' .595 '<p>' . __( '<a href="https://wordpress.org/support/article/appearance-menus-screen/">Documentation on Menus</a>' ) . '</p>' . 596 596 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 597 597 ); 598 598 -
src/wp-admin/network/index.php
52 52 53 53 get_current_screen()->set_help_sidebar( 54 54 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 55 '<p>' . __( '<a href="https:// codex.wordpress.org/Network_Admin">Documentation on the Network Admin</a>' ) . '</p>' .55 '<p>' . __( '<a href="https://wordpress.org/support/article/network-admin/">Documentation on the Network Admin</a>' ) . '</p>' . 56 56 '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>' 57 57 ); 58 58 -
src/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">Documentation on Site Management</a>' ) . '</p>' .32 '<p>' . __( '<a href="https://wordpress.org/support/article/network-admin-sites-screen/">Documentation on Site Management</a>' ) . '</p>' . 33 33 '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">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="https:// codex.wordpress.org/Network_Admin_Sites_Screen">Documentation on Site Management</a>' ) . '</p>' .45 '<p>' . __( '<a href="https://wordpress.org/support/article/network-admin-sites-screen/">Documentation on Site Management</a>' ) . '</p>' . 46 46 '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>' 47 47 ); 48 48 -
src/wp-admin/network/upgrade.php
28 28 29 29 get_current_screen()->set_help_sidebar( 30 30 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 31 '<p>' . __( '<a href="https:// codex.wordpress.org/Network_Admin_Updates_Screen">Documentation on Upgrade Network</a>' ) . '</p>' .31 '<p>' . __( '<a href="https://wordpress.org/support/article/network-admin-updates-screen/">Documentation on Upgrade Network</a>' ) . '</p>' . 32 32 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 33 33 ); 34 34 -
src/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">Documentation on Creating a Network</a>' ) . '</p>' .67 '<p>' . __( '<a href="https:// codex.wordpress.org/Tools_Network_Screen">Documentation on the Network Screen</a>' ) . '</p>';66 '<p>' . __( '<a href="https://wordpress.org/support/article/create-a-network/">Documentation on Creating a Network</a>' ) . '</p>' . 67 '<p>' . __( '<a href="https://wordpress.org/support/article/tools-network-screen/">Documentation on the Network Screen</a>' ) . '</p>'; 68 68 69 69 get_current_screen()->add_help_tab( 70 70 array( … … 76 76 77 77 get_current_screen()->set_help_sidebar( 78 78 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 79 '<p>' . __( '<a href="https:// codex.wordpress.org/Create_A_Network">Documentation on Creating a Network</a>' ) . '</p>' .80 '<p>' . __( '<a href="https:// codex.wordpress.org/Tools_Network_Screen">Documentation on the Network Screen</a>' ) . '</p>' .79 '<p>' . __( '<a href="https://wordpress.org/support/article/create-a-network/">Documentation on Creating a Network</a>' ) . '</p>' . 80 '<p>' . __( '<a href="https://wordpress.org/support/article/tools-network-screen/">Documentation on the Network Screen</a>' ) . '</p>' . 81 81 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 82 82 ); 83 83 -
src/wp-admin/options-discussion.php
28 28 29 29 get_current_screen()->set_help_sidebar( 30 30 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 31 '<p>' . __( '<a href="https:// codex.wordpress.org/Settings_Discussion_Screen">Documentation on Discussion Settings</a>' ) . '</p>' .31 '<p>' . __( '<a href="https://wordpress.org/support/article/settings-discussion-screen/">Documentation on Discussion Settings</a>' ) . '</p>' . 32 32 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 33 33 ); 34 34 -
src/wp-admin/options-general.php
45 45 46 46 get_current_screen()->set_help_sidebar( 47 47 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 48 '<p>' . __( '<a href="https:// codex.wordpress.org/Settings_General_Screen">Documentation on General Settings</a>' ) . '</p>' .48 '<p>' . __( '<a href="https://wordpress.org/support/article/settings-general-screen/">Documentation on General Settings</a>' ) . '</p>' . 49 49 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 50 50 ); 51 51 … … 97 97 printf( 98 98 /* translators: %s: Codex URL */ 99 99 __( 'Enter the address here if you <a href="%s">want your site home page to be different from your WordPress installation directory</a>.' ), 100 __( 'https:// codex.wordpress.org/Giving_WordPress_Its_Own_Directory' )100 __( 'https://wordpress.org/support/article/giving-wordpress-its-own-directory/' ) 101 101 ); 102 102 ?> 103 103 </p> … … 376 376 '<p><strong>' . __( 'Preview:' ) . '</strong> <span class="example">' . date_i18n( get_option( 'time_format' ) ) . '</span>' . 377 377 "<span class='spinner'></span>\n" . '</p>'; 378 378 379 echo "\t<p class='date-time-doc'>" . __( '<a href="https:// codex.wordpress.org/Formatting_Date_and_Time">Documentation on date and time formatting</a>.' ) . "</p>\n";379 echo "\t<p class='date-time-doc'>" . __( '<a href="https://wordpress.org/support/article/formatting-date-and-time/">Documentation on date and time formatting</a>.' ) . "</p>\n"; 380 380 ?> 381 381 </fieldset> 382 382 </td> -
src/wp-admin/options-media.php
34 34 35 35 get_current_screen()->set_help_sidebar( 36 36 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 37 '<p>' . __( '<a href="https:// codex.wordpress.org/Settings_Media_Screen">Documentation on Media Settings</a>' ) . '</p>' .37 '<p>' . __( '<a href="https://wordpress.org/support/article/settings-media-screen/">Documentation on Media Settings</a>' ) . '</p>' . 38 38 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 39 39 ); 40 40 -
src/wp-admin/options-permalink.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/Settings_Permalinks_Screen">Documentation on Permalinks Settings</a>' ) . '</p>' .52 '<p>' . __( '<a href="https:// codex.wordpress.org/Using_Permalinks">Documentation on Using Permalinks</a>' ) . '</p>' .51 '<p>' . __( '<a href="https://wordpress.org/support/article/settings-permalinks-screen/">Documentation on Permalinks Settings</a>' ) . '</p>' . 52 '<p>' . __( '<a href="https://wordpress.org/support/article/using-permalinks/">Documentation on Using Permalinks</a>' ) . '</p>' . 53 53 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 54 54 ); 55 55 … … 175 175 printf( 176 176 /* translators: %s: Codex URL */ 177 177 __( 'WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="%s">number of tags are available</a>, and here are some examples to get you started.' ), 178 __( 'https:// codex.wordpress.org/Using_Permalinks' )178 __( 'https://wordpress.org/support/article/using-permalinks/' ) 179 179 ); 180 180 ?> 181 181 </p> … … 376 376 <?php endif; ?> 377 377 <?php endif; ?> 378 378 <?php elseif ( $is_nginx ) : ?> 379 <p><?php _e( '<a href="https:// codex.wordpress.org/Nginx">Documentation on Nginx configuration</a>.' ); ?></p>379 <p><?php _e( '<a href="https://wordpress.org/support/article/nginx/">Documentation on Nginx configuration</a>.' ); ?></p> 380 380 <?php 381 381 else : 382 382 if ( $permalink_structure && ! $using_index_permalinks && ! $writable && $update_required ) : -
src/wp-admin/options-reading.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/Settings_Reading_Screen">Documentation on Reading Settings</a>' ) . '</p>' .43 '<p>' . __( '<a href="https://wordpress.org/support/article/settings-reading-screen/">Documentation on Reading Settings</a>' ) . '</p>' . 44 44 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 45 45 ); 46 46 -
src/wp-admin/options-writing.php
49 49 50 50 get_current_screen()->set_help_sidebar( 51 51 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 52 '<p>' . __( '<a href="https:// codex.wordpress.org/Settings_Writing_Screen">Documentation on Writing Settings</a>' ) . '</p>' .52 '<p>' . __( '<a href="https://wordpress.org/support/article/settings-writing-screen/">Documentation on Writing Settings</a>' ) . '</p>' . 53 53 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 54 54 ); 55 55 -
src/wp-admin/plugin-editor.php
138 138 139 139 get_current_screen()->set_help_sidebar( 140 140 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 141 '<p>' . __( '<a href="https:// codex.wordpress.org/Plugins_Editor_Screen">Documentation on Editing Plugins</a>' ) . '</p>' .141 '<p>' . __( '<a href="https://wordpress.org/support/article/plugins-editor-screen/">Documentation on Editing Plugins</a>' ) . '</p>' . 142 142 '<p>' . __( '<a href="https://codex.wordpress.org/Writing_a_Plugin">Documentation on Writing Plugins</a>' ) . '</p>' . 143 143 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 144 144 ); -
src/wp-admin/plugin-install.php
102 102 103 103 get_current_screen()->set_help_sidebar( 104 104 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 105 '<p>' . __( '<a href="https:// codex.wordpress.org/Plugins_Add_New_Screen">Documentation on Installing Plugins</a>' ) . '</p>' .105 '<p>' . __( '<a href="https://wordpress.org/support/article/plugins-add-new-screen/">Documentation on Installing Plugins</a>' ) . '</p>' . 106 106 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 107 107 ); 108 108 -
src/wp-admin/plugins.php
463 463 464 464 get_current_screen()->set_help_sidebar( 465 465 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 466 '<p>' . __( '<a href="https:// codex.wordpress.org/Managing_Plugins#Plugin_Management">Documentation on Managing Plugins</a>' ) . '</p>' .466 '<p>' . __( '<a href="https://wordpress.org/support/article/managing-plugins/">Documentation on Managing Plugins</a>' ) . '</p>' . 467 467 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 468 468 ); 469 469 -
src/wp-admin/revision.php
142 142 ); 143 143 144 144 $revisions_sidebar = '<p><strong>' . __( 'For more information:' ) . '</strong></p>'; 145 $revisions_sidebar .= '<p>' . __( '<a href="https:// codex.wordpress.org/Revision_Management">Revisions Management</a>' ) . '</p>';145 $revisions_sidebar .= '<p>' . __( '<a href="https://wordpress.org/support/article/revisions/">Revisions Management</a>' ) . '</p>'; 146 146 $revisions_sidebar .= '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'; 147 147 148 148 get_current_screen()->set_help_sidebar( $revisions_sidebar ); -
src/wp-admin/setup-config.php
189 189 /* translators: %s: Codex URL */ 190 190 printf( 191 191 __( 'Need more help? <a href="%s">We got it</a>.' ), 192 __( 'https:// codex.wordpress.org/Editing_wp-config.php' )192 __( 'https://wordpress.org/support/article/editing-wp-config-php/' ) 193 193 ); 194 194 ?> 195 195 </p> -
src/wp-admin/theme-editor.php
49 49 get_current_screen()->set_help_sidebar( 50 50 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 51 51 '<p>' . __( '<a href="https://codex.wordpress.org/Theme_Development">Documentation on Theme Development</a>' ) . '</p>' . 52 '<p>' . __( '<a href="https:// codex.wordpress.org/Using_Themes">Documentation on Using Themes</a>' ) . '</p>' .53 '<p>' . __( '<a href="https:// codex.wordpress.org/Editing_Files">Documentation on Editing Files</a>' ) . '</p>' .52 '<p>' . __( '<a href="https://wordpress.org/support/article/using-themes/">Documentation on Using Themes</a>' ) . '</p>' . 53 '<p>' . __( '<a href="https://wordpress.org/support/article/editing-files/">Documentation on Editing Files</a>' ) . '</p>' . 54 54 '<p>' . __( '<a href="https://codex.wordpress.org/Template_Tags">Documentation on Template Tags</a>' ) . '</p>' . 55 55 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 56 56 ); -
src/wp-admin/theme-install.php
126 126 127 127 get_current_screen()->set_help_sidebar( 128 128 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 129 '<p>' . __( '<a href="https:// codex.wordpress.org/Using_Themes#Adding_New_Themes">Documentation on Adding New Themes</a>' ) . '</p>' .129 '<p>' . __( '<a href="https://wordpress.org/support/article/using-themes/#adding-new-themes">Documentation on Adding New Themes</a>' ) . '</p>' . 130 130 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 131 131 ); 132 132 -
src/wp-admin/themes.php
141 141 142 142 get_current_screen()->set_help_sidebar( 143 143 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 144 '<p>' . __( '<a href="https:// codex.wordpress.org/Using_Themes">Documentation on Using Themes</a>' ) . '</p>' .144 '<p>' . __( '<a href="https://wordpress.org/support/article/using-themes/">Documentation on Using Themes</a>' ) . '</p>' . 145 145 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 146 146 ); 147 147 -
src/wp-admin/tools.php
49 49 50 50 get_current_screen()->set_help_sidebar( 51 51 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 52 '<p>' . __( '<a href="https:// codex.wordpress.org/Tools_Screen">Documentation on Tools</a>' ) . '</p>' .52 '<p>' . __( '<a href="https://wordpress.org/support/article/tools-screen/">Documentation on Tools</a>' ) . '</p>' . 53 53 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 54 54 ); 55 55 -
src/wp-admin/update-core.php
210 210 211 211 if ( isset( $updates[0]->version ) && version_compare( $updates[0]->version, $wp_version, '>' ) ) { 212 212 echo '<div class="notice notice-warning"><p>'; 213 _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.' );213 _e( '<strong>Important:</strong> Before updating, please <a href="https://wordpress.org/support/article/wordpress-backups/">back up your database and files</a>. For help with updates, visit the <a href="https://wordpress.org/support/article/updating-wordpress/">Updating WordPress</a> Codex page.' ); 214 214 echo '</p></div>'; 215 215 216 216 echo '<h2 class="response">'; … … 664 664 665 665 get_current_screen()->set_help_sidebar( 666 666 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 667 '<p>' . __( '<a href="https:// codex.wordpress.org/Dashboard_Updates_Screen">Documentation on Updating WordPress</a>' ) . '</p>' .667 '<p>' . __( '<a href="https://wordpress.org/support/article/dashboard-updates-screen/">Documentation on Updating WordPress</a>' ) . '</p>' . 668 668 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 669 669 ); 670 670 -
src/wp-admin/upload.php
72 72 73 73 get_current_screen()->set_help_sidebar( 74 74 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 75 '<p>' . __( '<a href="https:// codex.wordpress.org/Media_Library_Screen">Documentation on Media Library</a>' ) . '</p>' .75 '<p>' . __( '<a href="https://wordpress.org/support/article/media-library-screen/">Documentation on Media Library</a>' ) . '</p>' . 76 76 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 77 77 ); 78 78 … … 247 247 248 248 get_current_screen()->set_help_sidebar( 249 249 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 250 '<p>' . __( '<a href="https:// codex.wordpress.org/Media_Library_Screen">Documentation on Media Library</a>' ) . '</p>' .250 '<p>' . __( '<a href="https://wordpress.org/support/article/media-library-screen/">Documentation on Media Library</a>' ) . '</p>' . 251 251 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 252 252 ); 253 253 -
src/wp-admin/user-edit.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_Your_Profile_Screen">Documentation on User Profiles</a>' ) . '</p>' .67 '<p>' . __( '<a href="https://wordpress.org/support/article/users-your-profile-screen/">Documentation on User Profiles</a>' ) . '</p>' . 68 68 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 69 69 ); 70 70 … … 308 308 ?> 309 309 <tr class="user-comment-shortcuts-wrap"> 310 310 <th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th> 311 <td><label for="comment_shortcuts"><input type="checkbox" name="comment_shortcuts" id="comment_shortcuts" value="true" <?php 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>311 <td><label for="comment_shortcuts"><input type="checkbox" name="comment_shortcuts" id="comment_shortcuts" value="true" <?php checked( 'true', $profileuser->comment_shortcuts ); ?> /> <?php _e( 'Enable keyboard shortcuts for comment moderation.' ); ?></label> <?php _e( '<a href="https://wordpress.org/support/article/keyboard-shortcuts/" target="_blank">More information</a>' ); ?></td> 312 312 </tr> 313 313 <?php endif; ?> 314 314 <tr class="show-admin-bar user-admin-bar-front-wrap"> -
src/wp-admin/user-new.php
252 252 253 253 get_current_screen()->set_help_sidebar( 254 254 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 255 '<p>' . __( '<a href="https:// codex.wordpress.org/Users_Add_New_Screen">Documentation on Adding New Users</a>' ) . '</p>' .255 '<p>' . __( '<a href="https://wordpress.org/support/article/users-add-new-screen/">Documentation on Adding New Users</a>' ) . '</p>' . 256 256 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 257 257 ); 258 258 -
src/wp-admin/users.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/Users_Screen">Documentation on Managing Users</a>' ) . '</p>' .75 '<p>' . __( '<a href="https:// codex.wordpress.org/Roles_and_Capabilities">Descriptions of Roles and Capabilities</a>' ) . '</p>' .74 '<p>' . __( '<a href="https://wordpress.org/support/article/users-screen/">Documentation on Managing Users</a>' ) . '</p>' . 75 '<p>' . __( '<a href="https://wordpress.org/support/article/roles-and-capabilities/">Descriptions of Roles and Capabilities</a>' ) . '</p>' . 76 76 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 77 77 ); 78 78 -
src/wp-admin/widgets.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/Appearance_Widgets_Screen">Documentation on Widgets</a>' ) . '</p>' .83 '<p>' . __( '<a href="https://wordpress.org/support/article/appearance-widgets-screen/">Documentation on Widgets</a>' ) . '</p>' . 84 84 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 85 85 ); 86 86 -
src/wp-content/themes/twentyeleven/content-aside.php
4 4 * 5 5 * Used on index and archive pages. 6 6 * 7 * @link https:// codex.wordpress.org/Post_Formats7 * @link https://wordpress.org/support/article/post-formats/ 8 8 * 9 9 * @package WordPress 10 10 * @subpackage Twenty_Eleven -
src/wp-content/themes/twentyeleven/content-gallery.php
4 4 * 5 5 * Used on index and archive pages. 6 6 * 7 * @link https:// codex.wordpress.org/Post_Formats7 * @link https://wordpress.org/support/article/post-formats/ 8 8 * 9 9 * @package WordPress 10 10 * @subpackage Twenty_Eleven -
src/wp-content/themes/twentyeleven/content-image.php
4 4 * 5 5 * Used on index and archive pages. 6 6 * 7 * @link https:// codex.wordpress.org/Post_Formats7 * @link https://wordpress.org/support/article/post-formats/ 8 8 * 9 9 * @package WordPress 10 10 * @subpackage Twenty_Eleven -
src/wp-content/themes/twentyeleven/content-link.php
4 4 * 5 5 * Used on index and archive pages 6 6 * 7 * @link https:// codex.wordpress.org/Post_Formats7 * @link https://wordpress.org/support/article/post-formats/ 8 8 * 9 9 * @package WordPress 10 10 * @subpackage Twenty_Eleven -
src/wp-content/themes/twentyeleven/content-status.php
4 4 * 5 5 * Used on index and archive pages 6 6 * 7 * @link https:// codex.wordpress.org/Post_Formats7 * @link https://wordpress.org/support/article/post-formats/ 8 8 * 9 9 * @package WordPress 10 10 * @subpackage Twenty_Eleven -
src/wp-content/themes/twentyeleven/inc/theme-options.php
118 118 '<p>' . __( 'Remember to click "Save Changes" to save any changes you have made to the theme options.', 'twentyeleven' ) . '</p>'; 119 119 120 120 $sidebar = '<p><strong>' . __( 'For more information:', 'twentyeleven' ) . '</strong></p>' . 121 '<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/article/appearance-customize-screen/" target="_blank">Documentation on Theme Options</a>', 'twentyeleven' ) . '</p>' . 122 122 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support</a>', 'twentyeleven' ) . '</p>'; 123 123 124 124 $screen = get_current_screen(); -
src/wp-content/themes/twentyeleven/languages/twentyeleven.pot
485 485 msgstr "" 486 486 487 487 #: inc/theme-options.php:121 488 msgid "<a href=\"https:// codex.wordpress.org/Appearance_Theme_Options_Screen\" target=\"_blank\">Documentation on Theme Options</a>"488 msgid "<a href=\"https://wordpress.org/support/article/appearance-customize-screen/\" target=\"_blank\">Documentation on Theme Options</a>" 489 489 msgstr "" 490 490 491 491 #: inc/theme-options.php:122 -
src/wp-content/themes/twentyfifteen/functions.php
106 106 /* 107 107 * Enable support for Post Formats. 108 108 * 109 * See: https:// codex.wordpress.org/Post_Formats109 * See: https://wordpress.org/support/article/post-formats/ 110 110 */ 111 111 add_theme_support( 112 112 'post-formats', -
src/wp-content/themes/twentyfifteen/readme.txt
19 19 * Post Formats 20 20 * The GPL v2.0 or later license. :) Use it to make something cool. 21 21 22 For more information about Twenty Fifteen please go to https:// codex.wordpress.org/Twenty_Fifteen.22 For more information about Twenty Fifteen please go to https://wordpress.org/support/article/twenty-fifteen/. 23 23 24 24 == Installation == 25 25 26 26 1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button. 27 27 2. Type in Twenty Fifteen in the search form and press the 'Enter' key on your keyboard. 28 28 3. Click on the 'Activate' button to use your new theme right away. 29 4. Go to https:// codex.wordpress.org/Twenty_Fifteenfor a guide on how to customize this theme.29 4. Go to https://wordpress.org/support/article/twenty-fifteen/ for a guide on how to customize this theme. 30 30 5. Navigate to Appearance > Customize in your admin panel and customize to taste. 31 31 32 32 == Copyright == -
src/wp-content/themes/twentyfourteen/functions.php
149 149 150 150 /* 151 151 * Enable support for Post Formats. 152 * See https:// codex.wordpress.org/Post_Formats152 * See https://wordpress.org/support/article/post-formats/ 153 153 */ 154 154 add_theme_support( 155 155 'post-formats', -
src/wp-content/themes/twentyseventeen/README.txt
12 12 13 13 Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device. 14 14 15 For more information about Twenty Seventeen please go to https:// codex.wordpress.org/Twenty_Seventeen.15 For more information about Twenty Seventeen please go to https://wordpress.org/support/article/twenty-seventeen/. 16 16 17 17 == Installation == 18 18 19 19 1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button. 20 20 2. Type in Twenty Seventeen in the search form and press the 'Enter' key on your keyboard. 21 21 3. Click on the 'Activate' button to use your new theme right away. 22 4. Go to https:// codex.wordpress.org/Twenty_Seventeenfor a guide on how to customize this theme.22 4. Go to https://wordpress.org/support/article/twenty-seventeen/ for a guide on how to customize this theme. 23 23 5. Navigate to Appearance > Customize in your admin panel and customize to taste. 24 24 25 25 == Copyright == -
src/wp-content/themes/twentyseventeen/functions.php
83 83 /* 84 84 * Enable support for Post Formats. 85 85 * 86 * See: https:// codex.wordpress.org/Post_Formats86 * See: https://wordpress.org/support/article/post-formats/ 87 87 */ 88 88 add_theme_support( 89 89 'post-formats', -
src/wp-content/themes/twentysixteen/functions.php
112 112 /* 113 113 * Enable support for Post Formats. 114 114 * 115 * See: https:// codex.wordpress.org/Post_Formats115 * See: https://wordpress.org/support/article/post-formats/ 116 116 */ 117 117 add_theme_support( 118 118 'post-formats', -
src/wp-content/themes/twentysixteen/readme.txt
18 18 * Post Formats 19 19 * The GPL v2.0 or later license. :) Use it to make something cool. 20 20 21 For more information about Twenty Sixteen please go to https:// codex.wordpress.org/Twenty_Sixteen.21 For more information about Twenty Sixteen please go to https://wordpress.org/support/article/twenty_sixteen/. 22 22 23 23 == Installation == 24 24 25 25 1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button. 26 26 2. Type in Twenty Sixteen in the search form and press the 'Enter' key on your keyboard. 27 27 3. Click on the 'Activate' button to use your new theme right away. 28 4. Go to https:// codex.wordpress.org/Twenty_Sixteenfor a guide on how to customize this theme.28 4. Go to https://wordpress.org/support/article/twenty_sixteen/ for a guide on how to customize this theme. 29 29 5. Navigate to Appearance > Customize in your admin panel and customize to taste. 30 30 31 31 == Copyright == -
src/wp-content/themes/twentythirteen/functions.php
171 171 172 172 /* 173 173 * This theme supports all available post formats by default. 174 * See https:// codex.wordpress.org/Post_Formats174 * See https://wordpress.org/support/article/post-formats/ 175 175 */ 176 176 add_theme_support( 177 177 'post-formats', -
src/wp-includes/class-wp-oembed.php
4 4 * 5 5 * Used internally by the WP_Embed class, but is designed to be generic. 6 6 * 7 * @link https:// codex.wordpress.org/oEmbedoEmbed Codex Article7 * @link https://wordpress.org/support/article/embeds/ oEmbed Codex Article 8 8 * @link http://oembed.com/ oEmbed Homepage 9 9 * 10 10 * @package WordPress -
src/wp-includes/class-wp-query.php
10 10 /** 11 11 * The WordPress Query class. 12 12 * 13 * @link https:// codex.wordpress.org/Function_Reference/WP_QueryCodex page.13 * @link https://developer.wordpress.org/reference/classes/wp_query/ Codex page. 14 14 * 15 15 * @since 1.5.0 16 16 * @since 4.5.0 Removed the `$comments_popup` property. -
src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php
51 51 printf( 52 52 /* translators: 1: Codex URL, 2: additional link attributes, 3: accessibility text */ 53 53 _x( '(If you plan to use a menu <a href="%1$s" %2$s>widget%3$s</a>, skip this step.)', 'menu locations' ), 54 __( 'https:// codex.wordpress.org/WordPress_Widgets' ),54 __( 'https://wordpress.org/support/article/wordpress-widgets/' ), 55 55 ' class="external-link" target="_blank"', 56 56 sprintf( 57 57 '<span class="screen-reader-text"> %s</span>', -
src/wp-includes/date.php
10 10 * return no results. In these cases, a _doing_it_wrong() error notice is also thrown. 11 11 * See WP_Date_Query::validate_date_values(). 12 12 * 13 * @link https:// codex.wordpress.org/Function_Reference/WP_QueryCodex page.13 * @link https://developer.wordpress.org/reference/classes/wp_query/ Codex page. 14 14 * 15 15 * @since 3.7.0 16 16 */ -
src/wp-includes/formatting.php
4693 4693 $error = sprintf( 4694 4694 /* translators: %s: Codex URL */ 4695 4695 __( 'A structure tag is required when using custom permalinks. <a href="%s">Learn more</a>' ), 4696 __( 'https:// codex.wordpress.org/Using_Permalinks#Choosing_your_permalink_structure' )4696 __( 'https://wordpress.org/support/article/using-permalinks/#choosing-your-permalink-structure' ) 4697 4697 ); 4698 4698 } 4699 4699 break; -
src/wp-includes/functions.php
4792 4792 /* translators: %s: Codex URL */ 4793 4793 $message .= ' ' . sprintf( 4794 4794 __( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ), 4795 __( 'https:// codex.wordpress.org/Debugging_in_WordPress' )4795 __( 'https://wordpress.org/support/article/debugging-in-wordpress/' ) 4796 4796 ); 4797 4797 /* translators: Developer debugging message. 1: PHP function name, 2: Explanatory message, 3: Version information message */ 4798 4798 trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) ); … … 4804 4804 } 4805 4805 $message .= sprintf( 4806 4806 ' Please see <a href="%s">Debugging in WordPress</a> for more information.', 4807 'https:// codex.wordpress.org/Debugging_in_WordPress'4807 'https://wordpress.org/support/article/debugging-in-wordpress/' 4808 4808 ); 4809 4809 trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) ); 4810 4810 } -
src/wp-includes/ms-load.php
492 492 /* translators: %s: Codex URL */ 493 493 $msg .= sprintf( 494 494 __( 'Read the <a href="%s" target="_blank">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ), 495 __( 'https:// codex.wordpress.org/Debugging_a_WordPress_Network' )495 __( 'https://wordpress.org/support/article/debugging-a-wordpress-network/' ) 496 496 ); 497 497 $msg .= ' ' . __( 'If you’re still stuck with this message, then check that your database contains the following tables:' ) . '</p><ul>'; 498 498 foreach ( $wpdb->tables( 'global' ) as $t => $table ) { -
src/wp-includes/vars.php
10 10 * servers with known pretty permalink capability. 11 11 * 12 12 * Note: Though Nginx is detected, WordPress does not currently 13 * generate rewrite rules for it. See https:// codex.wordpress.org/Nginx13 * generate rewrite rules for it. See https://wordpress.org/support/article/nginx/ 14 14 * 15 15 * @package WordPress 16 16 */ -
src/wp-includes/widgets.php
10 10 * This functionality was found in a plugin before the WordPress 2.2 release, which 11 11 * included it in the core from that point on. 12 12 * 13 * @link https:// codex.wordpress.org/Plugins/WordPress_WidgetsWordPress Widgets13 * @link https://wordpress.org/support/article/wordpress-widgets/ WordPress Widgets 14 14 * @link https://codex.wordpress.org/Plugins/WordPress_Widgets_Api Widgets API 15 15 * 16 16 * @package WordPress -
src/wp-load.php
80 80 $die .= '<p>' . sprintf( 81 81 /* translators: %s: Codex URL */ 82 82 __( "Need more help? <a href='%s'>We got it</a>." ), 83 __( 'https:// codex.wordpress.org/Editing_wp-config.php' )83 __( 'https://wordpress.org/support/article/editing-wp-config-php/' ) 84 84 ) . '</p>'; 85 85 $die .= '<p>' . sprintf( 86 86 /* translators: %s: wp-config.php */