cat_is_ancestor_of( int|object $cat1, int|object $cat2 )
Checks if a category is an ancestor of another category.
Description Description
You can use either an ID or the category object for both parameters. If you use an integer, the category will be retrieved.
Parameters Parameters
- $cat1
-
(int|object) (Required) ID or object to check if this is the parent category.
- $cat2
-
(int|object) (Required) The child category.
Return Return
(bool) Whether $cat2 is child of $cat1.
More Information More Information
- The function evaluates if the second category is a child of the first category.
- Any level of ancestry will return True.
- Arguments should be either integer or objects; if arguments are string representations of integers and not true integers, cat_is_ancestor_of will return False.
Source Source
File: wp-includes/category.php
246 247 248 |
function cat_is_ancestor_of( $cat1 , $cat2 ) { return term_is_ancestor_of( $cat1 , $cat2 , 'category' ); } |
View on Trac
Changelog Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |