Home > Article > Backend Development > 如何在typecho中的文章页面获得当前页面分类的缩略名??
如题。如何在typecho中的文章页面获得当前页面分类的缩略名??还有当前分类的名称
如题。如何在typecho中的文章页面获得当前页面分类的缩略名??还有当前分类的名称
楼上不够简洁
<code class="lang-php">// 当前分类缩略名 echo $this->category; // 当前分类名 $this->category(',', false); </code>
<code>$categories = $this->categories; foreach($categories as $cate) { echo $cate['slug']; echo $cate['name']; } </code>
应该是这样的..