PHPのコードがちゃんと表示されなかったのでもう一度書きます
<?php query_posts('post_type=live&showposts=5'); ?>
<ul class="info">
<?php while (have_posts()) : the_post(); ?>
<li class="info">
<span class="day"><a href="<?php the_permalink(); ?>"><?php echo get_the_title( $post->ID, 'band'); ?></a></span>
<a href="<?php the_permalink(); ?>"><?php echo mb_substr(get_the_content(), 0, 24); ?></a>
<?php echo get_the_term_list( $post->ID, 'band','',',',''); ?>
</li>
<?php endwhile;?>
</ul>