Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- add_action( 'wp_head' function() { ?>
- <script type="text/javascript">
- document.addEventListener('DOMContentLoaded', function() {
- var videoPlayers = document.querySelectorAll('.wp-video-shortcode');
- videoPlayers.forEach(function(player) {
- player.setAttribute('controlsList', 'nodownload');
- });
- });
- </script>
- <style type="text/css">
- video::-internal-media-controls-download-button {
- display: none !important;
- }
- </style>
- <?php } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement