Changeset 35983
- Timestamp:
- 12/16/2015 11:36:28 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r35901 r35983 593 593 */ 594 594 function post_trackback_meta_box($post) { 595 $form_trackback = '<input type="text" name="trackback_url" id="trackback_url" class="code" value="'. esc_attr( str_replace("\n", ' ', $post->to_ping) ) .'" />'; 595 $form_trackback = '<input type="text" name="trackback_url" id="trackback_url" class="code" value="' . 596 esc_attr( str_replace( "\n", ' ', $post->to_ping ) ) . '" aria-describedby="trackback-url-desc" />'; 596 597 if ('' != $post->pinged) { 597 598 $pings = '<p>'. __('Already pinged:') . '</p><ul>'; … … 604 605 605 606 ?> 606 <p><label for="trackback_url"><?php _e('Send trackbacks to:'); ?></label> <?php echo $form_trackback; ?><br /> (<?php _e('Separate multiple URLs with spaces'); ?>)</p> 607 <p> 608 <label for="trackback_url"><?php _e( 'Send trackbacks to:' ); ?></label> 609 <?php echo $form_trackback; ?> 610 </p> 611 <p id="trackback-url-desc" class="howto"><?php _e( 'Separate multiple URLs with spaces' ); ?></p> 607 612 <p><?php _e('Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using <a href="https://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">pingbacks</a>, no other action necessary.'); ?></p> 608 613 <?php
Note: See TracChangeset
for help on using the changeset viewer.