Can anyone instruct me how to make the audio player automatically being played on homepage only. I insert the code into the footer script, and now it's being automatically played on every page.
Can anyone instruct me how to make the audio player automatically being played on homepage only. I insert the code into the footer script, and now it's being automatically played on every page.
@tungjacob can you post the code you are using to get the audio to play in the footer? I cannot even get that far!
@tungjacob - use a conditional tag so the function only fires on the homepage - if(is_front_page() should do the trick.
Thank you, the question has been solved by another friend developer
Here is his code:
<?php if (function_exists("insert_audio_player")) {
if ( is_home() ) {
// homepage code goes here
insert_audio_player("[audio:http://link.mp3]");
} else {
// other pages code go here
insert_audio_player("[audio:http://link2.mp3]");
}
} ?>
Hope this helps another people who have the same problem
You must log in to post.