WordPress Version: 4.3
/**
* Removes hook for shortcode.
*
* @since 2.5.0
*
* @global array $shortcode_tags
*
* @param string $tag Shortcode tag to remove hook for.
*/
function remove_shortcode($tag)
{
global $shortcode_tags;
unset($shortcode_tags[$tag]);
}