当前位置:Gxlcms > PHP教程 > 如何在typecho中的文章页面获得当前页面分类的缩略名??

如何在typecho中的文章页面获得当前页面分类的缩略名??

时间:2021-07-01 10:21:17 帮助过:92人阅读

如题。如何在typecho中的文章页面获得当前页面分类的缩略名??还有当前分类的名称

回复内容:

如题。如何在typecho中的文章页面获得当前页面分类的缩略名??还有当前分类的名称

楼上不够简洁

// 当前分类缩略名
echo $this->category;

// 当前分类名
$this->category(',', false);

$categories = $this->categories;
foreach($categories as $cate) {
    echo $cate['slug'];
    echo $cate['name'];
}

应该是这样的..

人气教程排行