我在 wordpress 中有一个自定义管理页面设置,我正在使用wp_editor()函数来显示一个文本编辑器框,但是当我提交/发布表单时,输入到编辑器字段中的文本是空白的。
参见(删节)代码,例如:
<form method="POST" action="<?php echo admin_url('admin.php?page=mypage');?>">
<?php wp_editor('','newtestfield',array('textarea_name'=> 'newtestfield'));?>
<input type="submit" value="GO">
</form>
<?php
if(!empty($_POST)){
print_r($_POST); // At which point "newtestfield" is always empty (does not reflect any text entered into the editor field)
}
?>