Ticket #35751: 35751.patch
File 35751.patch, 986 bytes (added by , 9 years ago) |
---|
-
wp-admin/includes/meta-boxes.php
574 574 function post_excerpt_meta_box($post) { 575 575 ?> 576 576 <label class="screen-reader-text" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" id="excerpt"><?php echo $post->post_excerpt; // textarea_escaped ?></textarea> 577 <p><?php _e( 'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="https://codex.wordpress.org/Excerpt" target="_blank">Learn more about manual excerpts.</a>'); ?></p>577 <p><?php _e( 'Excerpts are optional hand-crafted summaries of your content that can be used in your theme.' ); ?> <a href="<?php echo esc_url( __( 'https://codex.wordpress.org/Excerpt' ) ); ?>" target="_blank"><?php _e( 'Learn more about manual excerpts.' ); ?></a></p> 578 578 <?php 579 579 } 580 580