【发布时间】:2013-10-07 13:27:38
【问题描述】:
是否可以使用函数自动删除 $content 中的 [短代码] 和短代码内容?我希望作者只能放文本,不能放代码或简码。
谢谢
【问题讨论】:
标签: jquery wordpress function shortcode
是否可以使用函数自动删除 $content 中的 [短代码] 和短代码内容?我希望作者只能放文本,不能放代码或简码。
谢谢
【问题讨论】:
标签: jquery wordpress function shortcode
您需要连接到 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 );
参考资料:
【讨论】: