Need Help with HTML and Wordpress

ingredible

Junior Member
Joined
Sep 11, 2010
Messages
183
Reaction score
25
Hi I hope that somebody could help me here:

I want to embeed this audio player in a footer.php of a wordpress blog

Audio Player:
Code:
[URL]http://www.dave-maxwell.com/wp-content/plugins/tierra-audio-with-autoresume/preview.php?name=dave&ti_apm_playlist_id=1&keepThis=true&TB_iframe=true&height=330&width=500[/URL]

Blog:
Code:
http://www.dave-maxwell.com

Would be nice if somebody could help me, because I am shitting around with this now for some hours and only thing what happened was shit.
 
Depending on the the theme you're using, you should be able to add a text widget to the footer with the embed code.

PM me if you need further assistance with this.
 
You could try putting the following into your theme functions file...

//additions to the footer..
add_action( 'wp_footer', 'my_footer_additions');
function my_footer_additions() { ?>
YOUR CODE HERE
<?php }
 
Back
Top