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

时间:2012-01-26 09:56:02

标签: php wordpress wordpress-plugin

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

2 个答案:

答案 0 :(得分:1)

可能是错的,因为我们不允许编辑wordpress的任何核心文件。但我能够通过编辑wp-includes中存在的文件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

答案 1 :(得分:0)

如果您使用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 ));