Risposte:
Sì, basta passare il parametro parent a get_terms
quando lo chiami, come ha sottolineato Michael.
Da WP 4.5 questo è l'uso raccomandato:
$myterms = get_terms( array( 'taxonomy' => 'taxonomy_name', 'parent' => 0 ) );
Prima di WP 4.5 questo era l'uso predefinito:
$myterms = get_terms( 'taxonomy_name_here', array( 'parent' => 0 ) );
Restituirà tutti i termini che hanno un valore genitore di 0
, ad es. termini di alto livello.
hide_empty
parametro, impostandolo 0
anche su, in modo da poter vedere i termini attualmente non utilizzati.
get_ancestors(TERM_ID, TAXONOMY, 'taxonomy')
developer.wordpress.org/reference/functions/get_ancestors
usa il parametro 'parent':
http://codex.wordpress.org/Function_Reference/get_terms
o
http://codex.wordpress.org/Function_Reference/get_categories
per i modelli di email di woocommerce utilizzare quanto segue:
$terms = get_the_terms( $_product->id , 'product_cat');
if($terms) {
foreach( $terms as $term ) {
$term = get_term_by("id", $term->parent, "product_cat");
if ($term->parent > 0) {
$term = get_term_by("id", $term->parent, "product_cat");
}
$cat_obj = get_term($term->term_id, 'product_cat');
$cat_name = $cat_obj->name;
}
}
echo '<br />('. $cat_name . ')';
$archive_cats= get_terms( 'archivecat', 'orderby=count&hide_empty=0&parent=0' );