我使用wp_editor
函数在插件中实现编辑器。它已实现,但是当我输入一些文本(在可视模式下)并点击保存时。它没有保存 options.php 中的值。但是如果我编辑(在文本模式下)输入一些文本,然后如果我当时保存它会将值保存在 options.php
这是示例代码
<?php
$editor = get_option('message');
$opt = array("textarea_name" => "message[textarea]");
wp_editor( $editor['textarea'], "message[textarea]", $opt );
?>
如果在文本模式下而不是在可视模式下编辑,为什么要保存值?谁能帮忙?
发布问题后
发布此问题后我尝试的另一种格式这里也有同样的问题
基本(带有必填字段)
<?php
$content1 = get_option('val');
$editor_id='val';
wp_editor( $content1, $editor_id );
?>