本文共 126 个字数,平均阅读时长 ≈ 1分钟
需要修改的文件header.php
- 路径
usr/themes/Joe/public/header.php
options->JBarragerStatus === 'on') : ?>
widget('Widget_Comments_Recent@index', 'pageSize=15')->to($comments); ?>
have()) : ?>
next()) : ?>
content); ?>
代码语言:javascript复制options->JBarragerStatus === 'on') : ?>
代码语言:javascript复制options->JBarragerStatus === 'on') : ?>
修改文件include.php
- 路径
usr/themes/Joe/public/include.php
options->JBarragerStatus === 'on') : ?>
修改文件functions.php
- 路径
usr/themes/Joe/functions.php
$JBarragerStatus = new Typecho_Widget_Helper_Form_Element_Select(
'JBarragerStatus',
array('off' => '关闭(默认)', 'on' => '开启'),
'off',
'是否开启弹幕功能(仅限PC)',
'介绍:开启后,网站将会显示评论弹幕功能,该功能采用CSS动画引擎,并非传统JS操作DOM,无任何性能消耗。'
);
$JBarragerStatus->setAttribute('class', 'joe_content joe_other');
$form->addInput($JBarragerStatus->multiMode());
修改config.php
- 位置:
usr/themes/Joe/public/config.php
/* 弹幕 */
DOCUMENT_BARRAGER: 'options->JBarragerStatus === 'on' ? 'on' : 'off' ?>'
上传前端代码
- 位置:
usr/themes/Joe/library