Skip to content

Instantly share code, notes, and snippets.

@flymke
Created November 13, 2024 12:43
Show Gist options
  • Save flymke/1b7545081c7921bea3d128a8619c1902 to your computer and use it in GitHub Desktop.
Save flymke/1b7545081c7921bea3d128a8619c1902 to your computer and use it in GitHub Desktop.
SantaPress stop audio from video when closing the modal
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