
WordPress React开发项目初学者指南
category_exists ( $cat_name, $category_parent = null )
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; }