展示
1.修改functions.php文件,底部增加,文件路径:/usr/themes/Joe-master
// 文章阅读时长设置
$onlineTime = new Typecho_Widget_Helper_Form_Element_Select(
'onlineTime',
array(
'off' => '关闭(默认)',
'on' => '开启',
),
'on',
'是否启用文章阅读时长统计',
'介绍:开启后,文章底部展示文章字数,预计阅读时长和已阅读时长'
);
$onlineTime->setAttribute('class', 'joe_content joe_aside'); //如果无法显示设置,则将以下joe_custom修改为 joe_aside(查看上下文写的是 joe_xxxx 啥东西 改成一样)
$form->addInput($onlineTime->multiMode());
2.修改article.php文件,文件路径:usr/themes/Joe-master/public
①该段新增
<div class="contain" style="margin-bottom: 10px; <?php if(Helper::options()->onlineTime !== 'on') echo 'display:none;' ?>">
<blockquote id="onlineTime">本文共 <?php art_count($this->cid); ?> 个字数,平均阅读时长 ≈ <?php echo art_time($this->cid); ?>分钟</blockquote>
</div>
②该段新增,最底部
如果都操作完毕没有显示 那就重新关闭展示 然后再次打开试试
本文共 192 个字数,平均阅读时长 ≈ 1分钟
评论 (0)