ホーム » ブログ » wordpressで投稿の属するカテゴリーの子カテゴリーを表示

2013/09/05

表示したい個所に下記のコードを注入

<?php $cats = get_the_category();
$current_cat = '';
foreach ( $cats as $cat ) {
 if ( ! $current_cat || cat_is_ancestor_of( $current_cat, $cat ) ) {
 $current_cat = $cat;
 }
} ?><?php echo $current_cat->cat_name; ?>

Related Posts関連記事

BLOGブログのカテゴリー

HOMEPAGEホームページ制作

SEOSEO対策

OTHERその他のサービス

to Top