関数 wp_editor()
2014/12/25
関数 wp_editor()
定義ファイル :/blog/wp-includes/general-template.php 5
1 2 3 4 5 6 | function wp_editor( $content, $editor_id, $settings = array() ) { if ( ! class_exists( '_WP_Editors' ) ) require( ABSPATH . WPINC . '/class-wp-editor.php' ); _WP_Editors::editor($content, $editor_id, $settings); } |