Changeset 21311 for trunk/wp-admin/edit-form-advanced.php
- Timestamp:
- 07/24/2012 12:15:15 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-advanced.php
r21300 r21311 284 284 <div id="titlewrap"> 285 285 <label class="hide-if-no-js" style="visibility:hidden" id="title-prompt-text" for="title"><?php echo apply_filters( 'enter_title_here', __( 'Enter title here' ), $post ); ?></label> 286 <input type="text" name="post_title" size="30" tabindex="1"value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" />286 <input type="text" name="post_title" size="30" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" /> 287 287 </div> 288 288 <div class="inside"> … … 313 313 <div id="postdivrich" class="postarea"> 314 314 315 <?php wp_editor($post->post_content, 'content', array('dfw' => true, 'tab index' => 1, 'tabfocus_elements' => 'sample-permalink,post-preview') ); ?>315 <?php wp_editor($post->post_content, 'content', array('dfw' => true, 'tabfocus_elements' => 'sample-permalink,post-preview') ); ?> 316 316 317 317 <table id="post-status-info" cellspacing="0"><tbody><tr> … … 379 379 ?> 380 380 381 <?php if ( (isset($post->post_title) && '' == $post->post_title) || (isset($_GET['message']) && 2 > $_GET['message'])) : ?>381 <?php if ( (isset($post->post_title) && '' == $post->post_title) || (isset($_GET['message']) && 2 > $_GET['message']) ) : ?> 382 382 <script type="text/javascript"> 383 383 try{document.post.title.focus();}catch(e){}
Note: See TracChangeset
for help on using the changeset viewer.