Ticket #31161: 31161.diff
File 31161.diff, 772 bytes (added by , 10 years ago) |
---|
-
wp-admin/edit-form-advanced.php
531 531 ?> 532 532 <div id="postdivrich" class="postarea<?php if ( $_wp_editor_expand ) { echo ' wp-editor-expand'; } ?>"> 533 533 534 <?php wp_editor( $post->post_content, 'content', array( 534 <?php if ( wp_is_mobile() ) { 535 add_filter( 'mce_buttons_2', 'no_help_if_mobile' ); 536 function no_help_if_mobile( $buttons ) { 537 return array_diff( $buttons, array( 'wp_help' ) ); 538 } 539 } 540 541 wp_editor( $post->post_content, 'content', array( 535 542 '_content_editor_dfw' => $_content_editor_dfw, 536 543 'drag_drop_upload' => true, 537 544 'tabfocus_elements' => 'content-html,save-post',