Created
February 11, 2016 17:24
-
-
Save infn8/4833d7798a2ad0700af5 to your computer and use it in GitHub Desktop.
Add uStream oEmbed support to WordPress.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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