2015.05.01
以下でいける
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php
$cat = get_the_category();
$catslug = $cat[0]->slug;
?>
<ul>
<li>
<span class="<?php echo $catslug; ?>"><?php the_category(', ') ?></span>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<span class="data"><?php the_time('Y年m月j日') ?></span>
</li>
</ul>
<?php endwhile; ?>
<?php else : ?>
<p>記事が見つかりませんでした</p>
<?php endif; ?>