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