在循环中打印出主要类别ID

时间:2011-08-11 作者:Jordash

我正在寻找打印出一个循环中的所有主要类别(因此排除子类别),我需要获得ID来做一些高级类别列表。

所以我需要回应一下:

3 CatName
4 CatName
5 CatName
x CatName
其中编号为类别#,CatName为类别名称

1 个回复
最合适的回答,由SO网友:Michael 整理而成

http://codex.wordpress.org/Function_Reference/get_categories

example:

<?php 
foreach(get_categories(\'parent=0&orderby=id\') as $cat) { 
   echo $cat->term_id.\' \'.$cat->name.\'<br/>\'; 
} 
?>
结束