普通にカテゴリーで条件分岐するのは、 in_category() でいいんだけど、親カテゴリー毎に条件分岐したい。 かつ親カテゴリーはチェックがはいっていない場合の条件分岐。 指定親カテゴリーIDが「1」「5」と仮定して。 http://ja.forums.wordpress.org/topic/1290 <?php $post_cats = get_the_category(); if ( $post_cats[0]->cat_ID == 1 || $post_cats[0]->category_parent == 1 || cat_is_ancestor_of( 1, (int)$post_cats[0]->category_parent ) ) { ?> 親カテゴリーAの記事の表示内容 <?php } elseif ( $post_cats[0]->cat_ID == 5 || $p