<?php if( is_home() ) : // フロントページの場合 ?> <?php elseif( is_month() ) : // 月別ページの場合 ?> <?php else : // それ以外の場合 $cat = get_the_category(); $cat = $cat[0]; ?> <div class="cat-<?php echo $cat->cat_ID; ?>"></div> <?php endif; ?>
(※赤字部分は自サイトに合わせて変更)
.cat-1 {
background:url(images/head_img01.jpg) no-repeat;
width: 900px;
height: 250px;
}
.cat-2 {
background:url(images/head_img02.jpg) no-repeat;
width: 900px;
height: 250px;
}
.cat-3 {
background:url(images/head_img03.jpg) no-repeat;
width: 900px;
height: 250px;
}