jinsom_editor_post_content_render($content,$is_hide,$post_type,$post_id);
富文本编辑器内容编辑渲染过滤 钩子(1.6.88.2新增)这个钩子自带4个参数,
分别是:
1、html 内容
2、是否隐藏内容 1 是,0不是
3、内容类型
4、内容ID
示例
/**
* jinsom_editor_post_content_render
*
* 示例
* @param string $content html 内容
* @param bool $is_hide 是否隐藏内容 1 是,0不是
* @param string $post_type 内容类型
* @param string $post_id 内容ID
* @return string
* function test_func($content,$is_hide,$post_type,$post_id){
* return $content;
* }
* add_filter( 'jinsom_editor_post_content_render', 'test_func',10,4);
*/