Typecho 显示用户文章总数量
在你的主题functions.php文件中加入如下函数
function allpostnum($id){
$db = Typecho_Db::get();
$postnum=$db->fetchRow($db->select(array('COUNT(authorId)'=>'allpostnum'))->from ('table.contents')->where ('table.contents.authorId=?',$id)->where('table.contents.type=?', 'post'));
$postnum = $postnum['allpostnum'];
return $postnum;
}
显示当前作者文章总数量调用代码如下(适用于post.php,author.php,或者index.phpwhile循环中等等)
<?php echo allpostnum($this->author->uid); ?>
显示特定uid作者文章总数量调用代码如下(适用于任意模板文件)
<?php echo allpostnum(1); ?>
//数字1改成对应作者的uid即可
广告声明:文内含有的对外跳转链接(包括不限于超链接、二维码、口令等形式),用于传递更多信息,节省甄选时间,结果仅供参考,Typecho.Wiki所有文章均包含本声明。
获取所有用户文章总数 代码怎么写
获取全站文章数本站之前有文章提到过,你可以参考这篇文章:Typecho 获取网站统计数据