Changeset 57801
- Timestamp:
- 03/11/2024 02:06:51 PM (8 months ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r57766 r57801 5696 5696 $section_description .= sprintf( 5697 5697 ' <a href="%1$s" class="external-link" target="_blank">%2$s<span class="screen-reader-text"> %3$s</span></a>', 5698 esc_url( __( 'https:// wordpress.org/documentation/article/css/' ) ),5698 esc_url( __( 'https://developer.wordpress.org/advanced-administration/wordpress/css/' ) ), 5699 5699 __( 'Learn more about CSS' ), 5700 5700 /* translators: Hidden accessibility text. */ -
trunk/src/wp-includes/class-wp-oembed.php
r56178 r57801 5 5 * Used internally by the WP_Embed class, but is designed to be generic. 6 6 * 7 * @link https:// wordpress.org/documentation/article/embeds/7 * @link https://developer.wordpress.org/advanced-administration/wordpress/oembed/ 8 8 * @link http://oembed.com/ 9 9 * -
trunk/src/wp-includes/functions.php
r57707 r57801 5992 5992 /* translators: %s: Documentation URL. */ 5993 5993 __( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ), 5994 __( 'https:// wordpress.org/documentation/article/debugging-in-wordpress/' )5994 __( 'https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/' ) 5995 5995 ); 5996 5996 … … 6009 6009 $message .= sprintf( 6010 6010 ' Please see <a href="%s">Debugging in WordPress</a> for more information.', 6011 'https:// wordpress.org/documentation/article/debugging-in-wordpress/'6011 'https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/' 6012 6012 ); 6013 6013 … … 8506 8506 function wp_get_default_update_https_url() { 8507 8507 /* translators: Documentation explaining HTTPS and why it should be used. */ 8508 return __( 'https:// wordpress.org/documentation/article/why-should-i-use-https/' );8508 return __( 'https://developer.wordpress.org/advanced-administration/security/https/' ); 8509 8509 } 8510 8510 -
trunk/src/wp-includes/ms-load.php
r56192 r57801 498 498 /* translators: %s: Documentation URL. */ 499 499 __( 'Read the <a href="%s" target="_blank">Debugging a WordPress Network</a> article. Some of the suggestions there may help you figure out what went wrong.' ), 500 __( 'https:// wordpress.org/documentation/article/debugging-a-wordpress-network/' )500 __( 'https://developer.wordpress.org/advanced-administration/debug/debug-network/' ) 501 501 ); 502 502 $msg .= ' ' . __( 'If you are still stuck with this message, then check that your database contains the following tables:' ) . '</p><ul>'; -
trunk/src/wp-includes/vars.php
r57613 r57801 11 11 * 12 12 * Note: Though Nginx is detected, WordPress does not currently 13 * generate rewrite rules for it. See https:// wordpress.org/documentation/article/nginx/13 * generate rewrite rules for it. See https://developer.wordpress.org/advanced-administration/server/web-server/nginx/ 14 14 * 15 15 * @package WordPress -
trunk/src/wp-login.php
r57295 r57801 1318 1318 /* translators: 1: Browser cookie documentation URL, 2: Support forums URL. */ 1319 1319 __( '<strong>Error:</strong> Cookies are blocked due to unexpected output. For help, please see <a href="%1$s">this documentation</a> or try the <a href="%2$s">support forums</a>.' ), 1320 __( 'https:// wordpress.org/documentation/article/cookies/' ),1320 __( 'https://developer.wordpress.org/advanced-administration/wordpress/cookies/' ), 1321 1321 __( 'https://wordpress.org/support/forums/' ) 1322 1322 ) … … 1329 1329 /* translators: %s: Browser cookie documentation URL. */ 1330 1330 __( '<strong>Error:</strong> Cookies are blocked or not supported by your browser. You must <a href="%s">enable cookies</a> to use WordPress.' ), 1331 __( 'https:// wordpress.org/documentation/article/cookies/#enable-cookies-in-your-browser' )1331 __( 'https://developer.wordpress.org/advanced-administration/wordpress/cookies/#enable-cookies-in-your-browser' ) 1332 1332 ) 1333 1333 ); -
trunk/wp-config-sample.php
r57131 r57801 14 14 * * ABSPATH 15 15 * 16 * @link https:// wordpress.org/documentation/article/editing-wp-config-php/16 * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/ 17 17 * 18 18 * @package WordPress … … 78 78 * visit the documentation. 79 79 * 80 * @link https:// wordpress.org/documentation/article/debugging-in-wordpress/80 * @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/ 81 81 */ 82 82 define( 'WP_DEBUG', false );
Note: See TracChangeset
for help on using the changeset viewer.