Ticket #13038: 14123.diff
| File 14123.diff, 1.3 KB (added by jorbin, 2 years ago) |
|---|
-
wp-admin/includes/dashboard.php
409 409 410 410 $post = get_default_post_to_edit(); 411 411 ?> 412 412 <?php do_action('quickpress_form_before'); ?> 413 413 <form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press"> 414 414 <h4 id="quick-post-title"><label for="title"><?php _e('Title') ?></label></h4> 415 <?php do_action('quickpress_form_before_fields'); ?> 415 416 <div class="input-text-wrap"> 416 417 <input type="text" name="post_title" id="title" tabindex="1" autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" /> 417 418 </div> … … 433 434 <div class="input-text-wrap"> 434 435 <input type="text" name="tags_input" id="tags-input" tabindex="3" value="<?php echo get_tags_to_edit( $post->ID ); ?>" /> 435 436 </div> 436 437 <?php do_action('quickpress_form_after_fields'); ?> 437 438 <p class="submit"> 438 439 <input type="hidden" name="action" id="quickpost-action" value="post-quickpress-save" /> 439 440 <input type="hidden" name="quickpress_post_ID" value="<?php echo (int) $post->ID; ?>" /> … … 449 450 </p> 450 451 451 452 </form> 452 453 <?php do_action('quickpress_form_after'); ?> 453 454 <?php 454 455 if ( $drafts ) 455 456 wp_dashboard_recent_drafts( $drafts );
