Changeset 40476 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 04/19/2017 02:37:29 AM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/general-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r40254 r40476 3058 3058 3059 3059 /** 3060 * Outputs the editor scripts, stylesheets, and default settings. 3061 * 3062 * The editor can be initialized when needed after page load. 3063 * See wp.editor.initialize() in wp-admin/js/editor.js for initialization options. 3064 * 3065 * @uses _WP_Editors 3066 * @since 4.8.0 3067 */ 3068 function wp_enqueue_editor() { 3069 if ( ! class_exists( '_WP_Editors', false ) ) { 3070 require( ABSPATH . WPINC . '/class-wp-editor.php' ); 3071 } 3072 3073 _WP_Editors::enqueue_default_editor(); 3074 } 3075 3076 /** 3060 3077 * Retrieves the contents of the search WordPress query variable. 3061 3078 *
Note: See TracChangeset
for help on using the changeset viewer.