Sponser Link
WordPressの記事のカテゴリー毎にアイコンを変更する分岐を作成する
<?php $cats = get_the_category(); $cats = $cats[Θ]; ?> <?php if(have_posts()):?> <dl> <?php while(have_posts()):the_post();?> <dd class=<?php echo $cats->category_nicename;?> <a href="<?php the_permalink();?>"> <?php the_title();?> </a> <?php the_excerpt();?></dd> <?php endwhile;?> </dl> <?php endif;?>
Sponser Link