Correct the Issue of Category Display
修正 index.php
:
1 2 3 4 |
// the_category(',') => the_category(', ') <div class="meta"> <?php the_category(', ') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?> Posted by <?php echo ucwords(get_the_author()) ?> on <?php the_time('F j, Y') ?> <?php edit_post_link(__('Edit This')); ?> </div> |