在主题文件夹内/usr/themes/functions.php文件中添加如下代码
function theAllViews()
{
$db = Typecho_Db::get();
$row = $db->fetchAll('SELECT SUM(VIEWS) FROM `typecho_contents`');
echo number_format($row[0]['SUM(VIEWS)']);
}...
tips:第四行中,typecho_contents中的typecho_是您的数据库前缀,如果您安装typecho时修改过,则换成您自己的前缀
添加好了之后在footer.php文件下合适位置再次添加如下代码即可!
<?php echo theAllViews();?>...