-6ren">
gpt4 book ai didi

php - Wordpress wp_editor 不更新文本区域 $_POST 数据

转载 作者:行者123 更新时间:2023-12-05 05:28:10 27 4
gpt4 key购买 nike

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

最佳答案

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

        $("#team_history").addClass("mceEditor");
if ( typeof( tinyMCE ) == "object" && typeof( tinyMCE.execCommand ) == "function" ) {
tinyMCE.execCommand("mceAddControl", false, "team_history");
}

关于php - Wordpress wp_editor 不更新文本区域 $_POST 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13542153/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com