为tdo迷你表单前端启用富文本编辑器


enable rich text editor for tdo mini forms frontend

我正在使用插件"tdo-mini-forms",这样用户就可以从前端发帖。我想为用户提供富文本编辑器来输入文本。出于某种原因,wordpress删除了span标签和样式,例如:。

可能是错误的,因为我们不允许编辑wordpress的任何核心文件。但我可以通过编辑wp-includs中存在的kses.php文件来做到这一点。我刚刚评论了两行

// Post filtering
// add_filter('content_save_pre', 'wp_filter_post_kses');    commented this line
add_filter('excerpt_save_pre', 'wp_filter_post_kses');
// add_filter('content_filtered_save_pre', 'wp_filter_post_kses');    commented this line

如果您使用Wordpress>3.3,您可以使用TinyMce。打电话很容易而是使用

<textarea name="a" id="a" rows="6" cols="60" class="required"></textarea >

使用

  wp_editor('Text ', 'dfw_id', array('textarea_name' => a,'dfw' => true ));