Typecho增加评论弹幕

2023-03-08 19:03:27 浏览数 (1)

本文共 126 个字数,平均阅读时长 ≈ 1分钟

需要修改的文件header.php

  • 路径usr/themes/Joe/public/header.php
代码语言:javascript复制
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
代码语言:javascript复制
options->JBarragerStatus === 'on') : ?>

修改文件functions.php

  • 路径usr/themes/Joe/functions.php
代码语言:javascript复制
$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
代码语言:javascript复制
/* 弹幕 */
DOCUMENT_BARRAGER: 'options->JBarragerStatus === 'on' ? 'on' : 'off' ?>'

上传前端代码

  • 位置:usr/themes/Joe/library

0 人点赞