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

interface EmbedInterface {
    function wp_embed_register_handler( $id, $regex, $callback, $priority = 10 );
    function wp_embed_unregister_handler( $id, $priority = 10 );
    function wp_embed_defaults( $url = '' );
    function wp_oembed_get( $url, $args = '' );
    function _wp_oembed_get_object();
    function wp_oembed_add_provider( $format, $provider, $regex = false );
    function wp_oembed_remove_provider( $format );
    function wp_maybe_load_embeds();
    function wp_embed_handler_youtube( $matches, $attr, $url, $rawattr );
    function wp_embed_handler_audio( $matches, $attr, $url, $rawattr );
    function wp_embed_handler_video( $matches, $attr, $url, $rawattr );
    function wp_oembed_register_route();
    function wp_oembed_add_discovery_links();
    function wp_oembed_add_host_js();
    function get_post_embed_url( $post = null );
    function get_oembed_endpoint_url( $permalink = '', $format = 'json' );
    function get_post_embed_html( $width, $height, $post = null );
    function get_oembed_response_data( $post, $width );
    function get_oembed_response_data_rich( $data, $post, $width, $height );
    function wp_oembed_ensure_format( $format );
    function _oembed_rest_pre_serve_request( $served, $result, $request, $server );
    function _oembed_create_xml( $data, $node = null );
    function wp_filter_oembed_result( $result, $data, $url );
    function wp_embed_excerpt_more( $more_string );
    function the_excerpt_embed();
    function wp_embed_excerpt_attachment( $content );
    function enqueue_embed_scripts();
    function print_embed_styles();
    function print_embed_scripts();
    function _oembed_filter_feed_content( $content );
    function print_embed_comments_button();
    function print_embed_sharing_button();
    function print_embed_sharing_dialog();
    function the_embed_site_title();
    function wp_filter_pre_oembed_result( $result, $url, $args );
}