使用选择器.wp-admin
确保只选择wordpress管理区域。
html body.wp-admin {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
上述代码将阻止用户选择/突出显示页面内容。
如果确实要禁用右键单击,只需使用简单的JS代码,如:
<script>
document.oncontextmenu = new Function("alert(\'Right click is blocked.\'); return false");
</script>
参考文献:
https://css-tricks.com/almanac/properties/u/user-select/