wordpress怎么禁止文章复制
1、登陆你的网站后台

2、点击菜单栏的“外观”

3、点击“编辑”

4、在右侧,找到footer.php,打开它

5、在</body>之前加入以下代码
<script type="text/Javascript">
<!--
document.oncontextmenu=function(e){return false;};
document.onselectstart=function(e){return false;};
//-->
</script>
<style>
body{
-moz-user-select:none;
}
</style>
<SCRIPT LANGUAGE=javascript><!--
if (top.location != self.location)top.location=self.location;
// --></SCRIPT>
<noscript><iframe src=*.html></iframe></noscript>

6、更新文件,再试一下,是不是复制不了了?

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。