撰于 阅读 308

网站总访客数统计

当前模版 functions.php中,添加以下统计代码。

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

需要显示的位置(如:footer.php)插入以下调用代码。

访客总人数:<?php echo theAllViews();?>