Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action( 'wp_footer', function() { ?>
- <script type="text/javascript">
- document.addEventListener('DOMContentLoaded', (event) => {
- var videos = document.querySelectorAll('video');
- videos.forEach(function(video) {
- video.controlsList.add('nodownload');
- });
- });
- jQuery(document).ready(function($) {
- jQuery('figure video').parent().on('contextmenu', function(e) {
- e.preventDefault();
- });
- });
- jQuery(document).ready(function($) {
- $(document).on('keydown', function(e) {
- if ((e.ctrlKey || e.metaKey) && e.which == 67) {
- e.preventDefault();
- // Możesz dodać tutaj alert lub inną reakcję
- alert("Kopiowanie treści jest wyłączone.");
- }
- });
- });
- </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