1. Install the WordPress plugin Stratus which adds an admin interface for setting up the player, by searching for "stratus" in Plugins > Add New within your WordPress admin interface.
Alternatively, you can also download the plugin as a zip file from the official WordPress Plugin Directory: Extract it and upload the extracted folder to the plugins folder inside your wp-contents folder.
</body> tag:<script type="text/javascript" src="http://stratus.sc/stratus.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$stratus({
links: 'http://soundcloud.com/foofighters/sets/wasting-light'
});
});
</script>This is where you can change the configuration as you like.
If you already have another script in your header that includes jQuery, you can remove the jQuery tag in this code snippet. Just remember to then place this after that already existing jQuery script.
<head> section of your HTML.<script type="text/javascript" src="http://stratus.sc/stratus.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$stratus({
links: 'http://soundcloud.com/foofighters/sets/wasting-light'
});
});
</script>This is where you can change the configuration as you like.
If you already have another script in your header that includes jQuery, you can remove the jQuery tag in this code snippet. Just remember to then place this after that already existing jQuery script.