wordpress技巧之 找到分类的顶级分类 _PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > wordpress技巧之 找到分类的顶级分类

wordpress技巧之 找到分类的顶级分类

 2012/3/20 13:58:13  guangqiang  程序员俱乐部  我要评论(0)
  • 摘要:<?php$categories=get_the_category();$topcategory='';foreach($categoriesas$childcat){$parentcat=$childcat->category_parent;if($parentcat>0){$topcategory=get_cat_name($parentcat);continue;}}$topcategory=(strlen($topcategory)>0)
  • 标签:技巧 WordPress
<?php				
				   $categories = get_the_category();
				   $topcategory= '';
				   foreach($categories as $childcat) {
				       $parentcat = $childcat->category_parent;
				       if($parentcat>0){
					   $topcategory = get_cat_name($parentcat);
					   continue;
					}
				   }
				   $topcategory = (strlen($topcategory)>0)? $topcategory :  $categories[0]->cat_name;
 ?>

?有以上代码

我们可以轻松找到 某个子分类的顶级分类

在wordpress写文章的时候 我们只要选择当前的子分类即可

不需要把父级分类甚至顶级分类都勾选上

?

?

?

发表评论
用户名: 匿名