Created
November 13, 2024 12:43
-
-
Save flymke/1b7545081c7921bea3d128a8619c1902 to your computer and use it in GitHub Desktop.
SantaPress stop audio from video when closing the modal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'wp_footer', function () { ?> | |
<script> | |
jQuery(document).ready(function(){ | |
jQuery(document).on('click', '.close-modal', function() { | |
jQuery('.santapress-post').find('video source').attr('src', ''); | |
jQuery('.santapress-post').find('video').remove(); | |
return false; | |
}); | |
}); | |
</script> | |
<?php } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment