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!