WordPress模板中常常需要在文章页调用当前分类的名称和链接。
一般用以下的调用代码:
<?php the_category(', ') ?>
比如品自行博客WordPress栏目,前台调用出来是以下的代码:
<a href="https://www.pinzixing.com/category/wordpress/" title="WordPress" target="_blank">WordPress</a>
下面给大家介绍一下分别调用分类名称和链接的方法:
文章页调用分类名称PHP代码:
<?php
foreach((get_the_category()) as $category){
echo $category->cat_name;
}
?>
文章页调用分类别名PHP代码:
<?php
$cat = get_category($cid);
echo $cat->slug;
?>
文章页调用分类链接PHP代码:
<?php
$category = get_the_category();
if($category[0]){
echo ''.get_category_link($category[0]->term_id ).'';
}
?>
评论