创建编辑器时,只需将参数设置为false,通过调用\\u编辑器即可完成此操作,如下所示:
<?php the_editor($customcontent, $id = \'CustomContent\', $prev_id = \'title\', $media_buttons = false, $tab_index = 2); ?>
第一个参数是加载页面时应用于填充编辑器的内容,它可能来自编辑页面上的数据库,如$行[\'customcontent\')等。第二个参数是textarea的id,它也是其名称,并作为键进入$\\u POST数组。然后,media\\u buttons=false指示它不添加添加媒体的按钮。选项卡索引是不言自明的。
您还需要以下内容来设置文本区域:
add_action(\'admin_print_scripts\',\'prepare_editor\');
function prepare_editor() {
wp_enqueue_script(\'post\');
wp_enqueue_script(\'editor\');
wp_enqueue_script(\'utils\');
wp_enqueue_script(\'editor-functions\');
add_action(\'admin_head\',\'wp_tiny_mce\');
wp_enqueue_script(\'thickbox\');
wp_admin_css(\'thickbox\');
wp_enqueue_script(\'word-count\');
//add_editor_style(\'style.css\');
}