ขอบคุณ Ivaylo สำหรับรหัสนี้ซึ่งเป็นไปตามคำตอบของ Bainternet
ฟังก์ชันแรกด้านล่างget_term_top_most_parent
ยอมรับคำและอนุกรมวิธานและส่งคืนผู้ปกครองระดับสูงสุดของคำนั้น ๆ ฟังก์ชั่นที่สอง ( get_top_parents
) ทำงานในลูปและรับ taxonomy ส่งคืนรายการ 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;
}