Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Playbuzz oEmbed Provider

Register new oEmbed provider – playbuzz.com

// Register oEmbed providers
function playbuzz_oembed_provider() {

	wp_oembed_add_provider( '#https?://(www\.)?playbuzz.com/.*#i', 'https://www.playbuzz.com/api/oembed/', true );

}

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