时间:2024-03-14
WordPress函数get_all_category_ids以数组的形式返回所有分类的ID,在个性定制主题时非常有用,该函数没有任何参数。
get_all_category_ids()
Array ( [0] => 6 [1] => 9 [2] => 7 [3] => 1 [4] => 4 [5] => 5 [6] => 8 )
以下示例将输出所有分类的链接列表:
$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()
Copyright © 2019-2024 2543.cn