WordPress函数get_all_category_ids以数组的形式返回所有分类的ID,在个性定制主题时非常有用,该函数没有任何参数。
1 | get_all_category_ids() |
函数返回值
1 | Array ( [0] => 6 [1] => 9 [2] => 7 [3] => 1 [4] => 4 [5] => 5 [6] => 8 ) |
函数使用示例
以下示例将输出所有分类的链接列表:
1 2 3 4 | $category_ids = get_all_category_ids(); foreach($category_ids as $id) { echo '<li><a href="' . get_category_link($id) . '">' . get_cat_name($id) . '</a></li>'; } |
扩展阅读
get_all_category_ids()函数位于:wp-includes/deprecated.php
相关函数:
- get_terms()
原文链接:https://xiaohost.com/2299.html,转载请注明出处。