Ticket #23240: 23240.diff
| File 23240.diff, 1.1 KB (added by , 13 years ago) |
|---|
-
wp-admin/edit-form-advanced.php
384 384 <?php 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 390 394 if ( post_type_supports( $post_type, 'post-formats' ) ) { … … 447 451 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) ); ?> 453 457 -
wp-admin/css/wp-admin.css
6325 6325 padding: 0; 6326 6326 } 6327 6327 6328 #post-body-content{6328 .edit-form-section { 6329 6329 margin-bottom: 20px; 6330 6330 } 6331 6331