Removes hook for shortcode.
Parameters
$tag
stringrequired- Shortcode tag to remove hook for.
Source
function remove_shortcode( $tag ) {
global $shortcode_tags;
unset( $shortcode_tags[ $tag ] );
}
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |
User Contributed Notes