Changeset 21894 for trunk/wp-admin/includes/dashboard.php
- Timestamp:
- 09/18/2012 06:45:44 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r21838 r21894 504 504 505 505 <form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press"> 506 < h4 id="quick-post-title"><label for="title"><?php _e('Title') ?></label></h4>507 <div class="input-text-wrap">506 <div class="input-text-wrap" id="title-wrap"> 507 <label class="screen-reader-text prompt" for="title" id="title-prompt-text"><?php _e( 'Enter title here' ); ?></label> 508 508 <input type="text" name="post_title" id="title" autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" /> 509 509 </div> … … 515 515 <?php endif; ?> 516 516 517 <h4 id="content-label"><label for="content"><?php _e('Content') ?></label></h4>518 517 <div class="textarea-wrap"> 518 <label class="screen-reader-text" for="content"><?php _e( 'Content' ); ?></label> 519 519 <textarea name="content" id="content" class="mceEditor" rows="3" cols="15"><?php echo esc_textarea( $post->post_content ); ?></textarea> 520 520 </div> … … 522 522 <script type="text/javascript">edCanvas = document.getElementById('content');edInsertContent = null;</script> 523 523 524 < h4><label for="tags-input"><?php _e('Tags') ?></label></h4>525 <div class="input-text-wrap">524 <div class="input-text-wrap" id="tags-input-wrap"> 525 <label class="screen-reader-text prompt" for="tags-input" id="tags-input-prompt-text"><?php _e( 'Tags (separate with commas)' ); ?></label> 526 526 <input type="text" name="tags_input" id="tags-input" value="<?php echo get_tags_to_edit( $post->ID ); ?>" /> 527 527 </div>
Note: See TracChangeset
for help on using the changeset viewer.