Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'the_content', 'delete_wp_shortcode', 99 );
- function delete_wp_shortcode( $content ) {
- $content = preg_replace( '/\[vc_[^\]]*\]/', '', $content );
- $content = preg_replace( '/\[\/vc_[^\]]*\]/', '', $content );
- return $content;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement