Ticket #48987: 48987.diff
File 48987.diff, 2.3 KB (added by , 5 years ago) |
---|
-
wp-admin/options-writing.php
207 207 printf( 208 208 /* translators: %s: Codex 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 ?> 213 213 </label></p> … … 221 221 printf( 222 222 /* translators: 1: Codex 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 ); 227 227 ?> -
wp-admin/includes/class-custom-image-header.php
131 131 132 132 get_current_screen()->set_help_sidebar( 133 133 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 134 '<p>' . __( '<a href="https:// codex.wordpress.org/Appearance_Header_Screen">Documentation on Custom Header</a>' ) . '</p>' .134 '<p>' . __( '<a href="https://wordpress.org/support/article/appearance-customize-screen">Documentation on Custom Header</a>' ) . '</p>' . 135 135 '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' 136 136 ); 137 137 } -
wp-includes/query.php
888 888 '<code>pre_get_posts</code>', 889 889 '<code>WP_Query->is_main_query()</code>', 890 890 '<code>is_main_query()</code>', 891 __( 'https:// codex.wordpress.org/Function_Reference/is_main_query' )891 __( 'https://developer.wordpress.org/reference/functions/is_main_query' ) 892 892 ); 893 893 _doing_it_wrong( __FUNCTION__, $message, '3.7.0' ); 894 894 }