在 WordPress 模板开发中,我们有时候需要对某些页面单独调出 wordpress 的分类,并不需要添加链接,下面教大家如何WordPress 获取文章的分类和别名
如果是在 分类页面 进行调用:
<?php single_cat_title(); ?>
如果是在文章页面进行所属分类名称的调用:
<?php
foreach((get_the_category()) as $category)
{
echo $category->cat_name;
}
?>
调出分类别名:
if(is_category()) {
$cat = get_query_var('cat');
$yourcat = get_category($cat);
echo "该分类别名为" . $yourcat->slug;
}
相关文章:制作 WordPress模板 必看:功能函数调用集合
# 更多WordPress技巧,请关注「WordPress专题」