Skip to main content
Login Join
Snippet · PHP

Disable Right Click for Visitors

Shared by Amit Dholiya · June 29, 2026

19 views
Back to Snippets

Steps

  1. Add the code below to functions.php.
  2. Save the file.

Done — right-click will be disabled for visitors.

function disable_right_click() {
    ?>
    <script>
    document.addEventListener('contextmenu', event => event.preventDefault());
    </script>
    <?php
}
add_action('wp_footer', 'disable_right_click');
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments