如何在我的类别页面中获取父类别信息。让我解释一下细节。
说我喜欢
这样的类别Photos
Gallery one
Gallery Two
Gallery Three
我也使用了功能类图像插件..所以我的菜单是照片。所以,当我点击照片时,所有父类别名称和特色图片
要素图片短代码为[FeaturedImagesCat taxonomy='category' columns='3']
我认为我可以轻松获取特征图像,但主要的是如何用永久链接显示父类别名称
<?php
get_header(); ?>
<h1><?php if (is_category()) { single_cat_title(); } ?></h1>
<?php
$category = get_the_category();
$parent = get_cat_name($category[0]->category_parent);
if (!empty($parent)) {
echo '» ' . $parent;
} else {
echo '» ' . $category[0]->cat_name;
}
?>
<?php get_footer(); ?>
答案 0 :(得分:0)
使用它:
//Get all terms in current category
$term = $wp_query->queried_object;
现在您可以获取父类别ID
$parentId = $term->parent;
然后你可以得到描述:
echo category_description( $parentId );
完整代码:
//Get all terms in current category
$term = $wp_query->queried_object;
//parent id
$parentId = $term->parent;
if($parentId == 0){
echo category_description();
}else{
echo category_description( $parentId );
}