可以使用函数自动删除[shortcode]和短信代码内容中的短信代码吗?我希望作者只能放文本,而不是代码或短代码。
感谢
答案 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 );
<强>参考文献:强>