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

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -