Skip to content

Instantly share code, notes, and snippets.

@mustardBees
Created January 7, 2013 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mustardBees/4475788 to your computer and use it in GitHub Desktop.
Save mustardBees/4475788 to your computer and use it in GitHub Desktop.
Add Mixcloud oEmbed support to WordPress
/**
* Register additional oEmbed providers
*
* @author Syed Balkhi
* @link http://goo.gl/tccJh
*/
function iweb_register_additional_oembed_providers() {
wp_oembed_add_provider( 'http://www.mixcloud.com/*', 'http://www.mixcloud.com/oembed' );
}
add_action( 'init', 'iweb_register_additional_oembed_providers' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment