category_exists

函数
category_exists ( $cat_name, $category_parent = null )
参数
  • (int|string) $cat_name Category name.
    Required:
  • (int) $category_parent Optional. ID of parent category.
    Required:
    Default: null
返回值
  • (string|null) Returns the category ID as a numeric string if the pairing exists, null if not.
相关
  • term_exists()
定义位置
相关方法
term_existstag_existswp_category_checklistthe_category_rsscategory_description
引入
2.0.0
弃用
-

category_exists: 这个函数用来检查一个类别是否存在。它接受一个单一的参数,即类别ID或slug。它返回一个布尔值,表明该类别是否存在。

检查一个类别是否存在。

function category_exists( $cat_name, $category_parent = null ) {
	$id = term_exists( $cat_name, 'category', $category_parent );
	if ( is_array( $id ) ) {
		$id = $id['term_id'];
	}
	return $id;
}

常见问题

FAQs
查看更多 >