Helpful for portfolio, photography, and artwork websites.
Steps
- Open
functions.php. - Add the code below.
- Save the file.
Done — images cannot be dragged by visitors.
function disable_image_dragging() {
?>
<script>
document.addEventListener('dragstart', function(e) {
if (e.target.tagName === 'IMG') {
e.preventDefault();
}
});
</script>
<?php
}
add_action('wp_footer', 'disable_image_dragging');