Steps
- Add the code below to
functions.php. - 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');