Advertisement
krzysztof_et

Untitled

Feb 21st, 2024
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.86 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.  
  10.         jQuery(document).ready(function($) {
  11.             jQuery('figure video').parent().on('contextmenu', function(e) {
  12.                     e.preventDefault();
  13.             });
  14.         });
  15.  
  16.         jQuery(document).ready(function($) {
  17.             $(document).on('keydown', function(e) {
  18.                 if ((e.ctrlKey || e.metaKey) && e.which == 67) {
  19.                     e.preventDefault();
  20.                     // Możesz dodać tutaj alert lub inną reakcję
  21.                     alert("Kopiowanie treści jest wyłączone.");
  22.                 }
  23.             });
  24.         });
  25.     </script>
  26.     <style type="text/css">
  27.         video::-internal-media-controls-download-button {
  28.             display: none !important;
  29.         }
  30.     </style>
  31. <?php } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement