Typecho主题插件站
每一个作品都值得被记录

Typecho 获取网站标签总数目

Typecho爱好者开发日志 • 1801次浏览 • 发布 2018-05-24 • 更新 2018-05-24
极致加速的V2Ray 助您畅享全球网络 & 搬瓦工VPS最新优惠码
/**
* 获取标签数目
* 
* 语法: <?php echo tagsNum(); ?>
* 
* @access protected
* @return integer
*/
function tagsNum($display = true)
{
        $db = Typecho_Db::get();
        $total_tags = $db->fetchObject($db->select(array('COUNT(mid)' => 'num'))
              ->from('table.metas')
              ->where('table.metas.type = ?', 'tag'))->num;
        if($display) {
            echo $total_tags;
        } else {
            return $total_tags;
        }
}

本文检索关键词:typecho
厂商投放
添加新评论 »