【转载】Typecho 网站总访客数统计代码/如何让自己的typecho博客统计访问次数

原地址:https://sunpma.com/251.html#comment-4804

首先在 Typecho 后台外观选择编辑当前外观 functions.php 中,添加以下统计代码

注:示例为本博客使用的 handsome 主题,其它主题也可以自行调用

//总访问量
    function theAllViews()
        {
            $db = Typecho_Db::get();
            $row = $db->fetchAll('SELECT SUM(VIEWS) FROM `typecho_contents`');
                echo number_format($row[0]['SUM(VIEWS)']);
        }

添加后点击保存即可;

示例图:
enter description here

然后在你需要显示的位置(如:footer.php sidebar.php 等)插入以下调用代码

handsome 主题添加代码位置在:网站根目录/usr/themes/handsome/component/sidebar.php

其他主题单独调用

示例图:
enter description here

handsome 主题,实际效果示例:

enter description here

#[3] #[2]