Advertisement
krzysztof_et

Untitled

Feb 21st, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. add_action( 'wp_footer', function() { ?>
  2.   <script type="text/javascript">
  3.     document.addEventListener('DOMContentLoaded', (event) => {
  4.         var videos = document.querySelectorAll('video');
  5.         videos.forEach(function(video) {
  6.             video.controlsList.add('nodownload');
  7.         });
  8.     });
  9.   </script>
  10.   <style type="text/css">
  11.     video::-internal-media-controls-download-button {
  12.       display: none !important;
  13.     }
  14.   </style>
  15. <?php } );
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement