Blog

【WordPress】子ターム、子カテゴリのみを表示

2015/08/10

カスタム投稿

備忘録です。

先日の親タームのみ出力する方法に続いて、子タームのみを表示する方法です。

参考サイト
WordPressで親カテゴリーは出力せずに子カテゴリー(子ターム)のみを出力する方法

子タームのみ出力

<?php
$terms = get_the_terms( $post ->ID, 'タクソノミー名' );
foreach( $terms as $term ) {
if($term->parent){
echo $term->name;
}
}
?>

子カテゴリのみ出力

<?php
$cats = get_the_category();
foreach($cats as $cat){
if($cat->parent){
echo $cat->cat_name;   
}
}
?>

カテゴリー

月間アーカイブ

MORE

ミュージシャンズ・プラザ

神社仏閣ホームーページ制作

ホームページ制作問合せ