skip to Main Content

Can Right Click be Disabled on a WordPress Site?

I wanted to disable right click on my wordpress site. I have written a small snippet and inserted into body which disables right click, CTRL events and keyups. <body oncontextmenu="return false" onselectstart="return false" onkeydown="if ((arguments[0] || window.event).ctrlKey) return false"></body> but…

VIEW QUESTION
Back To Top
Search