我试图在一个插件的字段集上启用wp_editor,我想知道你是否可以看看:
function custom_metaboxes( $meta_boxes ) {
$prefix = '_pre_'; // Prefix for all fields
$meta_boxes[] = array(
'id' => 'test_metabox',
'title' => __('Text area', 'montreal'),
'pages' => array('post', 'portfolio'), // post type
'context' => 'normal',
'priority' => 'high',
'show_names' => true, // Show field names on the left
'fields' => array(
array(
'name' => __('test 1', 'test'),
'desc' => __('desc', 'test'),
'id' => $prefix . 'g1',
'type' => 'textarea',
'save_id' => false,
attachments with array( 'attachment' )
),
),
);
我尝试实现此代码但崩溃了:
<?php wp_editor( $content, $prefix . 'g1', $settings = array() ); ?>
当它崩溃时,我的意思是文本编辑器只显示在textarea上的每个页面中,并且id =($ prefix。&#39; g1&#39;)。
我这是在该文本区域启用编辑器的正确方法吗?