wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



cat_is_ancestor_of › WordPress Function

Depuis2.1.0
Dépréciéen/a
cat_is_ancestor_of ( $cat1, $cat2 )
Paramètres: (2)
  • (int|object) $cat1 ID or object to check if this is the parent category.
    Requis: Oui
  • (int|object) $cat2 The child category.
    Requis: Oui
Retourne:
  • (bool) Whether $cat2 is child of $cat1.
Défini(e) dans:
Codex:

Checks if a category is an ancestor of another category.

You can use either an ID or the category object for both parameters. If you use an integer, the category will be retrieved.


Source

function cat_is_ancestor_of( $cat1, $cat2 ) {
	return term_is_ancestor_of( $cat1, $cat2, 'category' );
}