dane-m
1/24/2017 - 11:20 PM

Find shortcodes in WordPress Posts

Find shortcodes in WordPress Posts

<?php
  // Regular Expression to match [shortcodes].
  $regex = '(\[title(.*?)?\](.+?)?\[\/title\])';
  
  // Store them in an array
	preg_match( $regex, $content, $action_matches );
	
	// Remove them.
	preg_replace( $regex, '', $content );