我试图在我的主题选项中保存来自微型编辑器的数据,但它没有保存。这是我的完整案例
case 'tiny':
$tinysettings = array(
'editor_class' => 'theme_editor',
'tinymce' => array(
'theme_advanced_buttons1' => 'bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,link,unlink,anchor,|,blockquote',
'theme_advanced_buttons2' => 'formatselect,forecolor,|,image,|,sub,sup',
'theme_advanced_buttons3' => '',
'theme_advanced_buttons4' => '',
'width' => '450',
'height' => '200',
),
);
?>
<div class="options_input options_textarea">
<div class="options_desc"><?php echo $value['desc']; ?></div>
<span class="labels"><label for="<?php echo $value['id']; ?>"><?php echo $value['name']; ?></label></span>
<div class="tiny-editor">
<?php wp_editor( '', $value['id'], $tinysettings ); ?>
</div>
</div>
<?php
break;