strip_shortcode_tag()WP 3.3.0

Strips a shortcode tag based on RegEx matches against post content.

No Hooks.

Return

String|false. The content stripped of the tag, otherwise false.

Usage

strip_shortcode_tag( $m );
$m(array) (required)
RegEx matches against post content.

Changelog

Since 3.3.0 Introduced.

strip_shortcode_tag() code WP 6.5.2

function strip_shortcode_tag( $m ) {
	// Allow [[foo]] syntax for escaping a tag.
	if ( '[' === $m[1] && ']' === $m[6] ) {
		return substr( $m[0], 1, -1 );
	}

	return $m[1] . $m[6];
}