文章阅读统计次数上线
效果正如你所看
教程
感谢
QQ爹原文点此进入原文链接:https://qqdie.com/archives/typecho-read-statistics.html
之前提到过
Typecho 非插件实现文章阅读次数统计今天在这个基础上加入了 cookie 验证,让文章浏览次数更具有真实性。在 functions.php 中加入下面代码
//get_post_view($this)
function get_post_view($archive)
{
$cid = $archive->cid;
$db = Typecho_Db::get();
$prefix = $db->getPrefix();
if (!array_key_exists('views', $db->fetchRow($db->select()->from('table.contents')))) {
$db->query('ALTER TABLE `' . $prefix . 'contents` ADD `views` INT(10) DEFAULT 0;');
echo 0;
return;
}
$row = $db->fetchRow($db->select('views')->from('table.contents')->where('cid = ?', $cid));
if ($archive->is('single')) {
$db->query($db->update('table.contents')->rows(array('views' => (int) $row['views'] + 1))->where('cid = ?', $cid));
}
echo $row['views'];
}
在需要显示次数的地方 (如 index.php,post.php,page.php) 加下边的代码
<?php get_post_view($this) ?>