Skip to content

Instantly share code, notes, and snippets.

@sudipto-me
Created October 11, 2019 09:16
Show Gist options
  • Save sudipto-me/454fcf0bafae5f9125c494172d877f15 to your computer and use it in GitHub Desktop.
Save sudipto-me/454fcf0bafae5f9125c494172d877f15 to your computer and use it in GitHub Desktop.
Disable Right Click for the word press site. Add this code snippet in your theme's functions.php file.
function disable_right_click_callback()
{
?>
<script>
jQuery(document).ready(function() {
jQuery(document).bind("contextmenu", function(e) {
return false;
});
});
</script>
<?php
}
add_action('wp_footer', 'disable_right_click_callback');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment