wordpress个人博客越来越多,很多人为了方便直接复制别人文章粘贴到自己的博客上,对于原创者来说很头疼,本次教程是给自己博客加原创标注,当别人复制粘贴的时候会默认带有原创链接。
使用方法
使用方法很简单 就是在主题函数wp-content/themes/你的主题文件夹/functions.php末尾 ?>之前加入一下代码即可
//转载请注明来源带原文链接 function add_copyright_text() { ?> <script type='text/javascript'> function addLink() { var body_element = document.getElementsByTagName('body')[0]; var selection; selection = window.getSelection(); var pagelink = "<br /><br /> 转载请注明来源: <a href='"+document.location.href+"'>"+document.location.href+"</a>"; var copy_text = selection + pagelink; var new_div = document.createElement('div'); new_div.style.left='-99999px'; new_div.style.position='absolute'; body_element.appendChild(new_div ); new_div.innerHTML = copy_text ; selection.selectAllChildren(new_div ); window.setTimeout(function() { body_element.removeChild(new_div ); },0); } document.oncopy = addLink; </script> <?php } add_action( 'wp_footer', 'add_copyright_text');
效果图如下
当别人复制你的文章时就会默认把你的链接也加上。