Make WordPress Core

Ticket #48987: 48987.diff

File 48987.diff, 2.3 KB (added by Marcio Zebedeu, 4 years ago)
  • wp-admin/options-writing.php

     
    207207                printf(
    208208                        /* translators: %s: Codex URL. */
    209209                        __( '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' )
    211211                );
    212212                ?>
    213213        </label></p>
     
    221221                printf(
    222222                        /* translators: 1: Codex URL, 2: URL to Reading Settings screen. */
    223223                        __( 'WordPress is not notifying any <a href="%1$s">Update Services</a> because of your site&#8217;s <a href="%2$s">visibility settings</a>.' ),
    224                         __( 'https://codex.wordpress.org/Update_Services' ),
     224                        __( 'https://wordpress.org/support/article/update-services' ),
    225225                        'options-reading.php'
    226226                );
    227227                ?>
  • wp-admin/includes/class-custom-image-header.php

     
    131131
    132132                get_current_screen()->set_help_sidebar(
    133133                        '<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>' .
    135135                        '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
    136136                );
    137137        }
  • wp-includes/query.php

     
    888888                        '<code>pre_get_posts</code>',
    889889                        '<code>WP_Query->is_main_query()</code>',
    890890                        '<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' )
    892892                );
    893893                _doing_it_wrong( __FUNCTION__, $message, '3.7.0' );
    894894        }