如何獲取頂級分類名稱?

標籤: 

正在查看 5 個帖子:1-5 (共 5 個帖子)
  • 作者
    帖子
  • eoeore
    參與者
    • 文章數量: 114
    @eoeore
    樓主

    請問自定義內容有 2 級分類,在某個頁面的詳情頁,怎麼顯示該頁面的頂級分類名稱
    在循環內容裏,顯示該頁面的頂級分類名稱。

    是用 get_the_terms( int|WP_Post $post, string $taxonomy )  ??

    因為不懂代碼,如果不復雜的話,能否提供代碼?

    詩語
    管理員
    • 文章數量: 5,932
    @feibisi

    今天商城訂單有點多,需要人手處理下,忙完給你找找相關説明。

    詩語
    管理員
    • 文章數量: 5,932
    @feibisi

    看下這個是不是你要的那種

    https://wordpress.stackexchange.com/questions/45083/get-the-first-post-term

    下面是 get_the_terms 的官方示例,

    https://developer.wordpress.org/reference/functions/get_the_terms/

    不是很清楚你説的自定義內容是不是指自定義文章類型 CPT 如果是的話你可以用一些熱門的開發工具來做的。

    eoeore
    參與者
    • 文章數量: 114
    @eoeore
    樓主

    非常感謝工作這麼晚,還沒休息,還在幫忙解答。

    我的諮詢是:

    如果在文章有二級分類,在文章詳細頁,如果獲取該篇文章的頂級 (父級) 分類名稱?

    eoeore
    參與者
    • 文章數量: 114
    @eoeore
    樓主

    剛剛通過論壇搜索,已經找到解答了,非常感謝哈。
    可以獲取文章或自定義內容,詳細頁的頂級分類名稱或子類名稱。

    https://wordpress.stackexchange.com/questions/331879/get-categorys-parent-category-while-using-get-the-category-list

    $taxonomy = 'category'; //如果是自定義內容,這裏修改自定義分類名稱。
    
    // Get the term assigned to post.
    $post_term = wp_get_object_terms( $post->ID, $taxonomy);
    
    if ( ! empty( $post_term ) && ! is_wp_error( $post_term ) ) {
    
    // parent category object
    $parent = get_term($post_term[0]->parent, $taxonomy);
    
    echo '
    <div class="cat-links">
    
    ';
    
    get_template_part('images/inline', 'picto-actu.svg');
    
    // Display post categories.
    echo '<a href="'. get_term_link($parent->term_id,$taxonomy).'">'.$parent->name.'</a> >';
    echo '<a href="'. get_term_link($post_term[0]->term_id,$taxonomy).'">'.$post_term[0]->name.'</a> >';
    
    echo '
    
    </div>
    ';
    
    }
正在查看 5 個帖子:1-5 (共 5 個帖子)
  • 哎呀,回覆話題必需登錄。

話題信息

  • 當前位於:疑難雜症
  • 4 條回覆
  • 2 個參與人
  • 最後回覆:<a href="https://bbs.weixiaoduo.com/users/eoeore/" title=" 查看 eoeore 的個人資料" class="bbp-author-link"><span class="bbp-author-name">eoeore</span></a>
  • 上次活動:<a href="https://bbs.weixiaoduo.com/topic/32921/#post-32952" title=" 回覆至:如何獲取頂級分類名稱?">5 年、 8 月前</a>