// Add Background Music to Front Page Only
add_action('wp_footer', 'comvex_custom_background_music');
function comvex_custom_background_music() {
// Check if we are on the front page (Start Page)
if (is_front_page()) {
?>
<?php
}
}