Last active
May 23, 2016 12:31
-
-
Save jrobinsonc/7aae20047366821813fe1209cf101a75 to your computer and use it in GitHub Desktop.
Embed
This file contains hidden or 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 | |
/** | |
* Embed SoundCloud. | |
* | |
* @param string $url The URL of the audio in SoundCloud. | |
* @return string Returns the IFRAME tag. | |
*/ | |
function embed_soundcloud($url) | |
{ | |
return sprintf('<iframe width="100%%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=%s&color=ff5500&auto_play=false&hide_related=false&show_artwork=true"></iframe>', $url); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment