Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2. // Regular Expression to match [shortcodes].
  3. $regex = '(\[title(.*?)?\](.+?)?\[\/title\])';
  4.  
  5. // Store them in an array
  6. preg_match( $regex, $content, $action_matches );
  7.  
  8. // Remove them.
  9. preg_replace( $regex, '', $content );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement