纯代码实现WordPress内容被复制时,自动复制版权资讯
点击数: 1790
文章目录
当有人想复制你网站的内容时!
你又希望他能注明出处
像这样图一
复制后,他转贴到word或其他地方时
自动给他增加版权资讯出现
图二
打开主题的functions.php贴入下面代码
- function sheruo_copyright() { ?>
- function addLink() {
- var body_element = document.getElementsByTagName('body')[0];
- var selection;
- selection = window.getSelection();
- var pagelink = "
出处: +document.location.href+"'>"+document.location.href+"
Copyright © text is here"; // change this if you want - var copytext = selection + pagelink;
- var newdiv = document.createElement('div');
- newdiv.style.position='absolute';
- newdiv.style.left='-99999px';
- body_element.appendChild(newdiv);
- newdiv.innerHTML = copytext;
- selection.selectAllChildren(newdiv);
- window.setTimeout(function() {
- body_element.removeChild(newdiv);
- },0);
- }
- document.oncopy = addLink;
- }
- add_action( 'wp_footer', 'sheruo_copyright');
你可以自行修改语法内的中文字
代码由https://gist.github.com/umidjons/8612712