回答:
Bainternetの答えに基づいたこのコードを提供してくれたIvayloに感謝します。
以下の最初の関数get_term_top_most_parent
は、用語と分類法を受け入れ、用語の最上位の親(または、親がない場合は用語自体)を返します。2番目の関数(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;
}
get_term_children( $term, $taxonomy )
(documentation)を使用できます。特定の用語の最上位の親のすべての子を取得する場合は、次のように上記の結果を渡すことができますget_term_children( get_term_top_most_parent( $term, $taxonomy ), $taxonomy )
。
3.1.0以降、get_ancestors()
利用可能です。階層の最下位から最上位までの祖先の配列を返します。
これは、任意の用語の最上位の親用語を取得する単純な関数です。
function get_term_top_most_parent( $term_id, $taxonomy ) {
$parent = get_term_by( 'id', $term_id, $taxonomy );
while ( $parent->parent != 0 ){
$parent = get_term_by( 'id', $parent->parent, $taxonomy );
}
return $parent;
}
この関数を取得したら、次によって返された結果をループできますwp_get_object_terms
。
$terms = wp_get_object_terms( $post->ID, 'taxonomy' );
$top_parent_terms = array();
foreach ( $terms as $term ) {
//Get top level parent
$top_parent = get_term_top_most_parent( $term->ID, 'taxomony' );
//Check if you have it in your array to only add it once
if ( !in_array( $top_parent->ID, $top_parent_terms ) ) {
$top_parent_terms[] = $top_parent;
}
}
同じ問題があり、簡単に解決しました。これをチェックしてください:
定義し$taxonomy
ます。データを取得する分類法のスラッグになります。これを行った後、あなたは単にこれを行うことができます:
<?php
$postterms = wp_get_post_terms($post->ID, $taxonomy); // get post terms
$parentId = $postterms[0]->parent; // get parent term ID
$parentObj = get_term_by('id', $parentId, $taxonomy); // get parent object
?>
これで次のようになりました:
object(stdClass)#98 (11) {
["term_id"]=>
int(3)
["name"]=>
string(8) "Esportes"
["slug"]=>
string(8) "esportes"
["term_group"]=>
int(0)
["term_taxonomy_id"]=>
int(3)
["taxonomy"]=>
string(17) "noticiaseditorias"
["description"]=>
string(0) ""
["parent"]=>
int(0)
["count"]=>
int(4)
["object_id"]=>
int(123)
["filter"]=>
string(3) "raw"
}
また$parentObj
、slug、name、idなどを取得するために使用できます。$parentObj->slug
またはを例$parentObj->name
として使用します。
最も簡単な方法:
$rootId = end( get_ancestors( $term_id, 'my_taxonomy' ) );
$root = get_term( $rootId, 'my_taxonomy' );
echo $root->name;
たぶんこれは役立ちます: get_ancestors( $object_id, $object_type );