【问题标题】:AutoDelete shortcodes in post content自动删除帖子内容中的简码
【发布时间】:2013-10-07 13:27:38
【问题描述】:

是否可以使用函数自动删除 $content 中的 [短代码] 和短代码内容?我希望作者只能放文本,不能放代码或简码。

谢谢

【问题讨论】:

    标签: jquery wordpress function shortcode


    【解决方案1】:

    您需要连接到 wp_insert_post_data

    PHP:

    function remove_shortcodes( $data , $postarr ){
        $data['post_content'] = strip_shortcodes( $data['post_content'] );
        return $data;
    }
    
    add_filter( 'wp_insert_post_data', 'remove_shortcodes', '99', 2 );
    

    参考资料:

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2020-04-15
      • 2012-03-15
      • 2012-01-22
      • 1970-01-01
      • 1970-01-01
      • 2023-03-20
      • 1970-01-01
      相关资源
      最近更新 更多