wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



category_exists › WordPress Function

Seit2.0.0
Veraltetn/v
category_exists ( $cat_name, $category_parent = null )
Parameter: (2)
  • (int|string) $cat_name Category name.
    Erforderlich: Ja
  • (int) $category_parent Optional. ID of parent category.
    Erforderlich: Nein
    Standard: null
Siehe:
Gibt zurück:
  • (string|null) Returns the category ID as a numeric string if the pairing exists, null if not.
Definiert in:
Codex:

Checks whether a category exists.



Quellcode

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;
}