1、防采集串混淆:
在dede后台---系统----防采集串混淆 然后添加自己的混淆字符串即可。
然后将article_article.htm (文章内容页模板)中的{dede:field.body/}替换成 {dede:field name='body' function='RndString(@me)'/} 即可。
2、当复制文章时,自动加版权与文章详细页网址:
<script language="javascript" type="text/javascript">
<!--
document.body.oncopy = function () {
setTimeout( function () {
var text = clipboardData.getData("text");
if (text) {
text = text + "\r\n文章来自:织梦吧详文参考:"+location.href;
clipboardData.setData("text", text);
}
}, 100 )
}
-->
</script>
将以上代码加到<head></head>中间就行。