Skip to content

Instantly share code, notes, and snippets.

@mohammadfamo
Created December 7, 2023 10:07
Show Gist options
  • Save mohammadfamo/a6b474515f1575fe06bea170c9a2e225 to your computer and use it in GitHub Desktop.
Save mohammadfamo/a6b474515f1575fe06bea170c9a2e225 to your computer and use it in GitHub Desktop.
How to stop multiple songs playing wordpress
function vbt_audio_stop() {
wp_enqueue_script( 'jquery' );
?>
<script>
jQuery(document).ready(function (vbt) {
vbt("audio").on("play", function () {
vbt("audio")
.not(this)
.each(function (vbt, t) {
t.pause();
});
});
});
</script>
<?php }
add_action('wp_enqueue_scripts', 'vbt_audio_stop');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment