WPINC_shortcode.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface ShortcodeInterface {
    function add_shortcode($tag, $func);
    function remove_shortcode($tag);
    function remove_all_shortcodes();
    function shortcode_exists( $tag );
    function has_shortcode( $content, $tag );
    function do_shortcode( $content, $ignore_html = false );
    function get_shortcode_regex( $tagnames = null );
    function do_shortcode_tag( $m );
    function do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames );
    function unescape_invalid_shortcodes( $content );
    function get_shortcode_atts_regex();
    function shortcode_parse_atts($text);
    function shortcode_atts( $pairs, $atts, $shortcode = '' );
    function strip_shortcodes( $content );
    function strip_shortcode_tag( $m );
}