WordPress复制文字自动添加版权信息

Author: 陌小雨Date: 2015-12-21View: 70

想必大家辛苦原创的东西都希望能够得到转作者的出处保留,下面分享使用WordPress建站给复制文章内容添加版权提醒代码,将下面代码放到主题的functions.php文件中

//复制文字自动添加版权信息
function wpcool_copyright() { ?>
<script type='text/javascript'>
function addLink() {
    var body_element = document.getElementsByTagName('body')[0];
    var selection;
    selection = window.getSelection();
    var pagelink = "<br /><br /> 原文信息: <?php if(is_single()){ the_title();}> 原文链接:<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_head', 'wpcool_copyright');

如果需要弹窗提醒,可以前去查看:一款简单的js弹窗版权提醒(兼容IE)