Wordpress - 親カテゴリ ID を取得する方法
my category is
news
---->sport news
スポーツニュース に投稿しています。
スポーツ ニュースの投稿に移動したときに 、親(ニュース) IDを取得する方法は?
このコードは親猫の名前をエコーします
foreach((get_the_category()) as $childcat) { $parentcat = $childcat->category_parent;
echo get_cat_name($parentcat);
echo $parentcat->term_id;}
echo $post->post_parent->cat_ID;
このコードは、単一ページの猫の名前をエコーします
global $post;$category = get_the_category($post->ID);echo $category[0]->name;
この chode エコー id の猫の名前
$category = get_the_category(); echo $category[0]->cat_ID;
エコーの親 ID (cat_ID) が必要です 助けてください
ありがとう。