উত্তর:
হ্যাঁ, get_terms
মাইকেল যখন দেখিয়েছেন , কেবলমাত্র যখন আপনি এটি কল করবেন তখন প্যারেন্ট প্যারামিটারে যান ।
যেহেতু ডাব্লুপি ৪.৪ এটি ব্যবহারের পরামর্শ দেয়:
$myterms = get_terms( array( 'taxonomy' => 'taxonomy_name', 'parent' => 0 ) );
WP 4.5 এর আগে এটি ডিফল্ট ব্যবহার ছিল:
$myterms = get_terms( 'taxonomy_name_here', array( 'parent' => 0 ) );
যে সমস্ত শর্তাদি যার পিতামাতার মান রয়েছে তা ফেরত 0
পাঠাবে। শীর্ষ স্তরের পদ।
hide_empty
প্যারামিটারটিও দিয়ে পাস করতে হবে এবং 0
সেটিও সেট করে রাখতে হবে , সুতরাং আপনি বর্তমানে ব্যবহৃত পদগুলি দেখতে সক্ষম হবেন।
get_ancestors(TERM_ID, TAXONOMY, 'taxonomy')
developer.wordpress.org/references/funitions/get_ancestors
'প্যারেন্ট' প্যারামিটার ব্যবহার করুন:
http://codex.wordpress.org/Function_Reference/get_terms
অথবা
http://codex.wordpress.org/Function_Reference/get_categories
WooCommerce ইমেল টেম্পলেটগুলির জন্য নিম্নলিখিতটি ব্যবহার করুন:
$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' );