Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Last active May 23, 2016 12:31
Show Gist options
  • Save jrobinsonc/7aae20047366821813fe1209cf101a75 to your computer and use it in GitHub Desktop.
Save jrobinsonc/7aae20047366821813fe1209cf101a75 to your computer and use it in GitHub Desktop.
Embed
<?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&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_artwork=true"></iframe>', $url);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment