strip_shortcodes

Definition:
function strip_shortcodes( $content ) {}

Remove all shortcode tags from the given content.

Parameters

  • string $content: Content to remove shortcode tags.

Return values

returns:Content without shortcode tags.

Source code

function strip_shortcodes( $content ) {

	global $shortcode_tags;



	if (empty($shortcode_tags) || !is_array($shortcode_tags))

		return $content;



	$pattern = get_shortcode_regex();



	return preg_replace_callback( "/$pattern/s", 'strip_shortcode_tag', $content );

}

2921

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: