Search content for shortcodes and filter shortcodes through their hooks.
If there are no shortcode tags defined, then the content will be returned without any filtering. This might cause issues when plugins are disabled but the shortcode will still show up in the post or content.
Signature
do_shortcode( $content )
- content
- (string) Content to search for shortcodes
Return
(string) Content with shortcodes filtered out.
Source
function do_shortcode($content) {
global $shortcode_tags;
if (empty($shortcode_tags) || !is_array($shortcode_tags))
return $content;
$pattern = get_shortcode_regex();
return preg_replace_callback( "/$pattern/s", 'do_shortcode_tag', $content );
}
WP Trac GitHub Bitbucket
Link here
-
URL
http://queryposts.com/function/do_shortcode/ -
HTML
<a href='http://queryposts.com/function/do_shortcode/'>do_shortcode()</a> -
Markdown
[do_shortcode()](http://queryposts.com/function/do_shortcode/) -
BBCode
[url=http://queryposts.com/function/do_shortcode/]do_shortcode()[/url]