Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

ifttt oEmbed Provider

Register new oEmbed provider – ifttt.com

// Register oEmbed providers
function ifttt_oembed_provider() {

	wp_oembed_add_provider( '#https?://(www\.)?ifttt.com/recipes/.*#i', 'http://www.ifttt.com/oembed/', true );

}

// Hook into the 'init' action
add_action( 'init', 'ifttt_oembed_provider' );