0
A
回答
0
您可以通過此代碼爲特定職位
$cat = get_the_category($post_id);
然後讓所有的第一級類別的這一個,你可以得到孩子類別
$child_categories=get_categories(
array('parent' => $cat->cat_ID)
);
0
試試這個,這會爲「第n個工作'等級
$category = get_the_category();
$parent = get_ancestors($category[0]->term_id,'category');
if (empty($parent)) {
$parent[] = array($category[0]->term_id);
}
$parent = array_pop($parent);
$parent = get_category($parent);
if (!is_wp_error($parent)) {
var_dump($parent);
} else {
echo $parent->get_error_message();
}
參考:
相關問題
- 1. Opencart從類別ID獲取類別URL
- 2. 從類別id獲取子類別Magento
- 3. 從帖子ID獲取Wordpress類別ID
- 4. WP - 按類別獲取文章?
- 5. 獲取類別列表Wp API
- 6. 從帖子ID獲取類別名稱
- 7. 從joomla的名字獲取類別ID?
- 8. 獲取類別ID symfony3
- 9. 獲取數據類別ID
- 10. 獲取Joomla父類別ID
- 11. 獲取類別父ID
- 12. 如何從類別ID獲取類別名稱?
- 13. 如何使用帖子ID獲取wp類型分類?
- 14. 在wp-ecommerce插件的page.php模板上獲取產品類別ID
- 15. 在WP中獲取帖子ID查詢
- 16. WordPress獲取當前類別ID
- 17. Magento - 按類別獲取產品ID
- 18. 獲取已刪除類別的ID [Magento]
- 19. 在wordpress中獲取類別ID
- 20. 獲取Magento Footer中的類別ID
- 21. 獲取DIV ID的選擇類別?
- 22. 如何根據Magento中的類別id獲取類別名稱
- 23. 獲取子類別頁中的父類別ID - Magento
- 24. ACF - 在子類別中獲取頂級類別ID
- 25. 從WP陣列回聲多個類別
- 26. WP獲取當前不帶參數的類別網址
- 27. WP->查詢從meta_value和meta_key獲取自定義發佈ID
- 28. wp從外部文件中的帖子ID獲取元數據
- 29. Magento:從產品iD獲取產品類別陣列
- 30. 從Magento v2.0 SOAP API獲取產品類別ID