Changeset 49912
- Timestamp:
- 12/29/2020 08:12:42 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/readme.html
r49842 r49912 76 76 <dt><a href="https://wordpress.org/support/forums/">WordPress Support Forums</a></dt> 77 77 <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> 78 <dt><a href="https:// codex.wordpress.org/IRC">WordPress <abbr>IRC</abbr> (Internet Relay Chat) Channel</a></dt>78 <dt><a href="https://make.wordpress.org/support/handbook/appendix/other-support-locations/introduction-to-irc/">WordPress <abbr>IRC</abbr> (Internet Relay Chat) Channel</a></dt> 79 79 <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> 80 80 </dl> -
trunk/src/wp-admin/network/settings.php
r49013 r49912 61 61 get_current_screen()->set_help_sidebar( 62 62 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 63 '<p>' . __( '<a href="https:// codex.wordpress.org/Network_Admin_Settings_Screen">Documentation on Network Settings</a>' ) . '</p>' .63 '<p>' . __( '<a href="https://wordpress.org/support/article/network-admin-settings-screen/">Documentation on Network Settings</a>' ) . '</p>' . 64 64 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 65 65 ); -
trunk/src/wp-admin/options-writing.php
r48186 r49912 206 206 <?php 207 207 printf( 208 /* translators: %s: CodexURL. */208 /* translators: %s: Documentation URL. */ 209 209 __( 'When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href="%s">Update Services</a> on the Codex. Separate multiple service URLs with line breaks.' ), 210 __( 'https:// codex.wordpress.org/Update_Services' )210 __( 'https://wordpress.org/support/article/update-services/' ) 211 211 ); 212 212 ?> … … 220 220 <?php 221 221 printf( 222 /* translators: 1: CodexURL, 2: URL to Reading Settings screen. */222 /* translators: 1: Documentation URL, 2: URL to Reading Settings screen. */ 223 223 __( 'WordPress is not notifying any <a href="%1$s">Update Services</a> because of your site’s <a href="%2$s">visibility settings</a>.' ), 224 __( 'https:// codex.wordpress.org/Update_Services' ),224 __( 'https://wordpress.org/support/article/update-services/' ), 225 225 'options-reading.php' 226 226 ); -
trunk/src/wp-includes/query.php
r49506 r49912 902 902 if ( 'pre_get_posts' === current_filter() ) { 903 903 $message = sprintf( 904 /* translators: 1: pre_get_posts, 2: WP_Query->is_main_query(), 3: is_main_query(), 4: Link to codex is_main_query() page. */904 /* translators: 1: pre_get_posts, 2: WP_Query->is_main_query(), 3: is_main_query(), 4: Documentation URL. */ 905 905 __( 'In %1$s, use the %2$s method, not the %3$s function. See %4$s.' ), 906 906 '<code>pre_get_posts</code>', 907 907 '<code>WP_Query->is_main_query()</code>', 908 908 '<code>is_main_query()</code>', 909 __( 'https:// codex.wordpress.org/Function_Reference/is_main_query' )909 __( 'https://developer.wordpress.org/reference/functions/is_main_query/' ) 910 910 ); 911 911 _doing_it_wrong( __FUNCTION__, $message, '3.7.0' ); -
trunk/src/wp-includes/wp-db.php
r49184 r49912 1888 1888 * Performs a MySQL database query, using current database connection. 1889 1889 * 1890 * More information can be found on the Codexpage.1890 * More information can be found on the documentation page. 1891 1891 * 1892 1892 * @since 0.71 1893 1893 * 1894 * @link https:// codex.wordpress.org/Function_Reference/wpdb_Class1894 * @link https://developer.wordpress.org/reference/classes/wpdb/ 1895 1895 * 1896 1896 * @param string $query Database query.
Note: See TracChangeset
for help on using the changeset viewer.