jquery - AutoDelete shortcodes in post content -
it's possible autodelete [shortcode] , content of shortcode in $content of post function? want authors can put text, not code or shortcodes.
thanks
you need hook 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 );
references:
Comments
Post a Comment