I use this code in my blog (http://www.ragnarockmusic.com/) that I'm about to launch soon and was wondering how I would change the title value for the categories link. Right now it says "View all posts in" and then the name of the category, but I can't seem to find the title value anywhere. I'd prefer it say "View all [category] posts"
<div class="PostHead">
<h2>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></h2>
<small class="PostTime">
<strong class="day"><?php the_time('j') ?>
<strong class="month"><?php the_time('M') ?>
<strong class="year"><?php the_time('Y') ?>
</small>
<small class="PostAuthor">by <?php the_author_posts_link(); ?></small>
<small class="PostCat">Filed Under: <?php the_category(', ') ?></small>
</div>