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



wp_get_term_taxonomy_parent_id › WordPress Function

Seit3.1.0
Veraltetn/v
wp_get_term_taxonomy_parent_id ( $term_id, $taxonomy )
Parameter: (2)
  • (int) $term_id Term ID.
    Erforderlich: Ja
  • (string) $taxonomy Taxonomy name.
    Erforderlich: Ja
Gibt zurück:
  • (int|false) Parent term ID on success, false on failure.
Definiert in:
Codex:

Returns the term's parent's term ID.



Quellcode

function wp_get_term_taxonomy_parent_id( $term_id, $taxonomy ) {
	$term = get_term( $term_id, $taxonomy );
	if ( ! $term || is_wp_error( $term ) ) {
		return false;
	}
	return (int) $term->parent;
}