Advertisement
Guest User

soundcloud.php FIXED

a guest
Oct 1st, 2014
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Soundcloud oEmbed
  4. Plugin URI: http://www.brandonshutter.com
  5. Description: Enables the ability to paste a SoundCloud URL in it's own line and for oEmbed to make it play.
  6. Version: 1.1
  7. Author: Brandon Shutter
  8. Author URI: http://www.brandonshutter.com
  9. */
  10.  
  11.  
  12. function add_oembed_soundcloud(){
  13.         wp_oembed_add_provider( 'http://soundcloud.com/*', 'http://soundcloud.com/oembed' );
  14. }
  15. add_action('init','add_oembed_soundcloud');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement