独立站怎么禁用网站右键?
独立站怎么禁用网站右键?防止别人仿站之类的操作。
function disable_right_click() {
echo '<script type="text/javascript">
document.addEventListener("contextmenu", function(e) {
e.preventDefault();
});
</script>';
}
add_action('wp_footer', 'disable_right_click');
复制放到 function.php中即可。
页:
[1]