2

我在 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)
}
?>
4

1 回答 1

2

原来我在页面上有一些 javascript,我认为这是让编辑器运行所必需的,实际上它导致我的编辑器无法正常工作,这是我必须删除的 jquery 代码:

        $("#team_history").addClass("mceEditor");
        if ( typeof( tinyMCE ) == "object" && typeof( tinyMCE.execCommand ) == "function" ) {
            tinyMCE.execCommand("mceAddControl", false, "team_history");
        }
于 2012-11-25T00:34:17.023 回答