oEmbed for IFTTT and Wistia
// Register oEmbed providers
function lws_add_oembed_providers() {
wp_oembed_add_provider( '#https?://(www.)?ifttt.com/recipes/.*#i', 'http://www.ifttt.com/oembed/', true );
wp_oembed_add_provider( '/https?://(.+)?(wistia.com|wi.st)/.*/', 'http://fast.wistia.com/oembed', true );
}
add_action( 'init', 'lws_add_oembed_providers' );