WPINC_class wp embed.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface EmbedComponentInterface {
    public function run_shortcode( $content );
    public function maybe_run_ajax_cache();
    public function register_handler( $id, $regex, $callback, $priority = 10 );
    public function unregister_handler( $id, $priority = 10 );
    public function shortcode( $attr, $url = '' );
    public function delete_oembed_caches( $post_ID );
    public function cache_oembed( $post_ID );
    public function autoembed( $content );
    public function autoembed_callback( $match );
    public function maybe_make_link( $url );
}