首页 话题 小组 问答 好文 用户 我的社区 域名交易 唠叨

[钩子]jinsom_editor_post_content_render主题钩子使用

发布于 2024-11-12 14:20:08
0
245

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);
 */


评论
一个月内的热帖推荐
拿破轮子
Lv.1普通用户

84

帖子

19

小组

240

积分

赞助商广告
站长交流