Theme Editor: Hide the recommendation to create a child theme when editing a child theme.
Props mukesh27, davidbaumwald. Fixes #44889. git-svn-id: https://develop.svn.wordpress.org/trunk@45608 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c6c78490e2
commit
dd8fa6dc05
@ -344,13 +344,20 @@ if ( ! in_array( 'theme_editor_notice', $dismissed_pointers, true ) ) :
|
|||||||
<h1><?php _e( 'Heads up!' ); ?></h1>
|
<h1><?php _e( 'Heads up!' ); ?></h1>
|
||||||
<p>
|
<p>
|
||||||
<?php
|
<?php
|
||||||
echo sprintf(
|
_e( 'You appear to be making direct edits to your theme in the WordPress dashboard. We recommend that you don’t! Editing your theme directly could break your site and your changes may be lost in future updates.' );
|
||||||
/* translators: %s: link to documentation on child themes */
|
|
||||||
__( 'You appear to be making direct edits to your theme in the WordPress dashboard. We recommend that you don’t! Editing your theme directly could break your site and your changes may be lost in future updates. If you need to tweak more than your theme’s CSS, you might want to try <a href="%s">making a child theme</a>.' ),
|
|
||||||
esc_url( __( 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' ) )
|
|
||||||
);
|
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
|
<?php
|
||||||
|
if ( ! $theme->parent() ) {
|
||||||
|
echo '<p>';
|
||||||
|
echo sprintf(
|
||||||
|
/* translators: %s: link to documentation on child themes */
|
||||||
|
__( 'If you need to tweak more than your theme’s CSS, you might want to try <a href="%s">making a child theme</a>.' ),
|
||||||
|
esc_url( __( 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' ) )
|
||||||
|
);
|
||||||
|
echo '</p>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
<p><?php _e( 'If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.' ); ?></p>
|
<p><?php _e( 'If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.' ); ?></p>
|
||||||
</div>
|
</div>
|
||||||
<p>
|
<p>
|
||||||
|
Loading…
Reference in New Issue
Block a user