时间:2024-03-14
WordPress函数get_cat_ID可以根据分类的名称返回分类ID,在主题和插件的开发中很常用。
get_cat_ID( string $cat_name )
$cat_name
字符串
分类的名称
$cat_ID = get_cat_ID('开发'); $category = get_category($cat_ID); echo '<a href="' . get_category_link($category->cat_ID) . '">' . $category->name . '</a>';
get_cat_ID()函数位于:wp-includes/category.php
相关函数:
get_cat_name()
get_term_by()
get_category()
get_term()
get_category_children()
get_category_by_slug()
get_category_by_path()
Copyright © 2019-2024 2543.cn