Skip to content

Instantly share code, notes, and snippets.

View mohammadfamo's full-sized avatar

Mohammad Famo mohammadfamo

View GitHub Profile
@mohammadfamo
mohammadfamo / multiple songs playing
Created December 7, 2023 10:07
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();