Advertisement
vailobox

Remove shortcodes in Social Commerce

Sep 9th, 2015
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. function remove_shortcodes($content)
  2.   {
  3.     // Removing Shortcodes
  4.         $content = preg_replace('/[\[{\(].*[\]}\)]/U' , '', $content);  
  5.     return $content;  
  6.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement