इस कोड के लिए Ivaylo का धन्यवाद, जो बैनटेनट के उत्तर पर आधारित था।
नीचे दिया गया पहला कार्य, get_term_top_most_parent
एक शब्द और वर्गीकरण को स्वीकार करता है और शब्द के शीर्ष-स्तरीय माता-पिता (या स्वयं शब्द, यदि यह अभिभावक है) को वापस करता है; दूसरा फ़ंक्शन ( get_top_parents
) लूप में काम करता है, और, एक वर्गीकरण को देखते हुए, पोस्ट की शर्तों के शीर्ष-स्तरीय माता-पिता की एक HTML सूची देता है।
// Determine the top-most parent of a term
function get_term_top_most_parent( $term, $taxonomy ) {
// Start from the current term
$parent = get_term( $term, $taxonomy );
// Climb up the hierarchy until we reach a term with parent = '0'
while ( $parent->parent != '0' ) {
$term_id = $parent->parent;
$parent = get_term( $term_id, $taxonomy);
}
return $parent;
}
एक बार जब आप ऊपर का कार्य कर लेते हैं, तो आप लौटे परिणामों पर लूप कर सकते हैं wp_get_object_terms
और प्रत्येक शब्द के शीर्ष अभिभावक को प्रदर्शित कर सकते हैं :
function get_top_parents( $taxonomy ) {
// get terms for current post
$terms = wp_get_object_terms( get_the_ID(), $taxonomy );
$top_parent_terms = array();
foreach ( $terms as $term ) {
//get top level parent
$top_parent = get_term_top_most_parent( $term, $taxonomy );
//check if you have it in your array to only add it once
if ( !in_array( $top_parent, $top_parent_terms ) ) {
$top_parent_terms[] = $top_parent;
}
}
// build output (the HTML is up to you)
$output = '<ul>';
foreach ( $top_parent_terms as $term ) {
//Add every term
$output .= '<li><a href="'. get_term_link( $term ) . '">' . $term->name . '</a></li>';
}
$output .= '</ul>';
return $output;
}