Changeset 23615 for trunk/wp-admin/edit-form-advanced.php
- Timestamp:
- 03/04/2013 11:22:17 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-form-advanced.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-advanced.php
r23570 r23615 385 385 } 386 386 387 do_action( 'edit_form_after_title' ); 387 if ( has_action( 'edit_form_after_title' ) ) { 388 echo '<div class="edit-form-section">'; 389 do_action( 'edit_form_after_title' ); 390 echo '</div>'; 391 } 388 392 389 393 // post format fields … … 396 400 $image = false; 397 401 ?> 398 <div class="post-formats-fields ">402 <div class="post-formats-fields edit-form-section"> 399 403 400 404 <input type="hidden" name="post_format" id="post_format" value="<?php echo esc_attr( $post_format ); ?>" /> … … 448 452 if ( post_type_supports($post_type, 'editor') ) { 449 453 ?> 450 <div id="postdivrich" class="postarea ">454 <div id="postdivrich" class="postarea edit-form-section"> 451 455 452 456 <?php wp_editor($post->post_content, 'content', array('dfw' => true, 'tabfocus_elements' => 'insert-media-button,save-post', 'editor_height' => 360) ); ?> … … 471 475 472 476 </div> 473 <?php } ?> 474 475 <?php do_action( 'edit_form_after_editor' ); ?> 477 <?php } 478 479 if ( has_action( 'edit_form_after_editor' ) ) { 480 echo '<div class="edit-form-section">'; 481 do_action( 'edit_form_after_editor' ); 482 echo '</div>'; 483 } 484 ?> 476 485 </div><!-- /post-body-content --> 477 486
Note: See TracChangeset
for help on using the changeset viewer.