Changeset 43571 for trunk/src/wp-includes/class-wp-editor.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r43464 r43571 81 81 82 82 $set = wp_parse_args( 83 $settings, array( 83 $settings, 84 array( 84 85 'wpautop' => true, 85 86 'media_buttons' => true, … … 258 259 */ 259 260 $the_editor = apply_filters( 260 'the_editor', '<div id="wp-' . $editor_id_attr . '-editor-container" class="wp-editor-container">' . 261 'the_editor', 262 '<div id="wp-' . $editor_id_attr . '-editor-container" class="wp-editor-container">' . 261 263 $quicktags_toolbar . 262 264 '<textarea' . $editor_class . $height . $tabindex . $autocomplete . ' cols="40" name="' . esc_attr( $set['textarea_name'] ) . '" ' . … … 792 794 */ 793 795 do_action( 794 'wp_enqueue_editor', array( 796 'wp_enqueue_editor', 797 array( 795 798 'tinymce' => ( $default_scripts || self::$has_tinymce ), 796 799 'quicktags' => ( $default_scripts || self::$has_quicktags ), … … 848 851 // Can be added from js by using the 'wp-before-tinymce-init' event. 849 852 $settings['plugins'] = implode( 850 ',', array( 853 ',', 854 array( 851 855 'charmap', 852 856 'colorpicker',
Note: See TracChangeset
for help on using the changeset viewer.