Reputation: 171
In my category page full post are showing up. I want to make it only post titles with tumbnails. I'm using wordpress Twenty twelve theme.
Upvotes: 1
Views: 1565
Reputation: 3064
Keep
<?php the_title(); ?>
and <?php the_thumbnail(); ?>
. Remove either <?php the_content(); ?>
or <?php the_excerpt(); ?>
, dependant on which you have.
Upvotes: 1