Typecho显示访客总数
修改functions.php
新增函数:
//总访问量
function theAllViews()
{
$db = Typecho_Db::get();
$row = $db->fetchAll('SELECT SUM(VIEWS) FROM `typecho_contents`');
echo number_format($row[0]['SUM(VIEWS)']);
}
修改sidebar.php
其它功能部分新增行:
<li class="border-bottom"><a class="<?php echo $color['link']; ?>" target="_blank" href="https://ntnas.top:82/typecho/41.html"><?php _e('访客总数:'); ?><?php echo theAllViews();?></a></li>