1.修改config.php,文件路径:/usr/themes/Joe-master/public,添加如下代码:
var copyRightText = '<?php $this->options->CopyRightText() ?>';
2.修改custom.js,文件路径:usr/themes/Joe-master/assets/js,添加如下代码:
// 复制弹出提示
document.body.oncopy = function() {
if(copyRightText) {
Qmsg.warning(copyRightText);
}
};
3.修改include.php,文件路径:/usr/themes/Joe-master/public,添加如下代码:
<script src="<?php $this->options->themeUrl('assets/js/custom.js'); ?>"></script>
4.修改custom.php文件,文件路径:usr/themes/Joe-master/public,添加如下代码:
// 复制内容弹窗提醒
$CopyRightText = new Typecho_Widget_Helper_Form_Element_Text(
'CopyRightText',
NULL,
NULL,
'网站复制时提醒内容',
'介绍:填写此处,有人复制网站内容则弹出该提示 <br />'
);
$CopyRightText->setAttribute('class', 'joe_content joe_custom');
{
mathJaxContainer[0]}CopyRightText->multiMode());