Make WordPress Core


Ignore:
Timestamp:
04/01/2019 11:54:23 AM (6 years ago)
Author:
SergeyBiryukov
Message:

Themes: Link to an updated documentation on child themes on developer.wordpress.org, instead of Codex.

Props man4toman.
See #46450.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/update-core.php

    r44939 r45080  
    388388<h2><?php _e( 'Themes' ); ?></h2>
    389389<p><?php _e( 'The following themes have new versions available. Check the ones you want to update and then click &#8220;Update Themes&#8221;.' ); ?></p>
    390 <p><?php printf( __( '<strong>Please Note:</strong> Any customizations you have made to theme files will be lost. Please consider using <a href="%s">child themes</a> for modifications.' ), __( 'https://codex.wordpress.org/Child_Themes' ) ); ?></p>
     390<p>
     391    <?php
     392    printf(
     393        /* translators: %s: link to documentation on child themes */
     394        __( '<strong>Please Note:</strong> Any customizations you have made to theme files will be lost. Please consider using <a href="%s">child themes</a> for modifications.' ),
     395        __( 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' )
     396    );
     397    ?>
     398</p>
    391399<form method="post" action="<?php echo esc_url( $form_action ); ?>" name="upgrade-themes" class="upgrade">
    392400    <?php wp_nonce_field( 'upgrade-core' ); ?>
Note: See TracChangeset for help on using the changeset viewer.