AutoDelete帖子内容中的短代码

时间:2013-10-07 13:27:39

标签: jquery wordpress function shortcode

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

感谢

1 个答案:

答案 0 :(得分:2)

您需要加入 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 );

<强>参考文献: