Changeset 21311 for trunk/wp-admin/includes/dashboard.php
- Timestamp:
- 07/24/2012 12:15:15 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r21249 r21311 506 506 <h4 id="quick-post-title"><label for="title"><?php _e('Title') ?></label></h4> 507 507 <div class="input-text-wrap"> 508 <input type="text" name="post_title" id="title" tabindex="1"autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" />508 <input type="text" name="post_title" id="title" autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" /> 509 509 </div> 510 510 … … 517 517 <h4 id="content-label"><label for="content"><?php _e('Content') ?></label></h4> 518 518 <div class="textarea-wrap"> 519 <textarea name="content" id="content" class="mceEditor" rows="3" cols="15" tabindex="2"><?php echo esc_textarea( $post->post_content ); ?></textarea>519 <textarea name="content" id="content" class="mceEditor" rows="3" cols="15"><?php echo esc_textarea( $post->post_content ); ?></textarea> 520 520 </div> 521 521 … … 524 524 <h4><label for="tags-input"><?php _e('Tags') ?></label></h4> 525 525 <div class="input-text-wrap"> 526 <input type="text" name="tags_input" id="tags-input" tabindex="3"value="<?php echo get_tags_to_edit( $post->ID ); ?>" />526 <input type="text" name="tags_input" id="tags-input" value="<?php echo get_tags_to_edit( $post->ID ); ?>" /> 527 527 </div> 528 528 … … 532 532 <input type="hidden" name="post_type" value="post" /> 533 533 <?php wp_nonce_field('add-post'); ?> 534 <?php submit_button( __( 'Save Draft' ), 'button', 'save', false, array( 'id' => 'save-post' , 'tabindex'=> 4) ); ?>534 <?php submit_button( __( 'Save Draft' ), 'button', 'save', false, array( 'id' => 'save-post' ) ); ?> 535 535 <input type="reset" value="<?php esc_attr_e( 'Reset' ); ?>" class="button" /> 536 536 <span id="publishing-action"> 537 <input type="submit" name="publish" id="publish" accesskey="p" tabindex="5"class="button-primary" value="<?php current_user_can('publish_posts') ? esc_attr_e('Publish') : esc_attr_e('Submit for Review'); ?>" />537 <input type="submit" name="publish" id="publish" accesskey="p" class="button-primary" value="<?php current_user_can('publish_posts') ? esc_attr_e('Publish') : esc_attr_e('Submit for Review'); ?>" /> 538 538 <img class="waiting" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" /> 539 539 </span>
Note: See TracChangeset
for help on using the changeset viewer.