Skip to content

Instantly share code, notes, and snippets.

@infn8
Created February 11, 2016 17:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infn8/4833d7798a2ad0700af5 to your computer and use it in GitHub Desktop.
Save infn8/4833d7798a2ad0700af5 to your computer and use it in GitHub Desktop.
Add uStream oEmbed support to WordPress.
<?php
// Add this to your plugin file or to functions.php
function my_add_oembed_providers() {
wp_oembed_add_provider( '#http://(www\.)?ustream.tv/*#i', 'http://www.ustream.tv/oembed', true );
}
add_action( 'init', 'my_add_oembed_providers' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment