在主题函数wp-content/themes/你的主题文件夹/functions.php末尾
?>之前加入一下代码即可
//转载请注明来源带原文链接
function add_copyright_text() {
?>
function addLink() {
var body_element =
document.getElementsByTagName_r('body')[0];
var selection;
selection =
window.getSelection();
var copy_text = selection +
pagelink;
var new_div =
document.createElement_x('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;
加载中,请稍候......