How do I make the category template display full posts instead of partial posts?
I'm using Wordpress 3.0.1 with the Twenty Ten theme. I'm trying to change the way the posts in the Category view are displayed (i.e. by going to a url like mywebsite.com/category/mycategory). Currently the posts in the Category view just show the first part of a post, but I'd like to change that so it shows the whole thing.
In the Category Template (category.php) file, there are a few lines of code that look like they are responsible for generating the category data:
/* Run the loop for the category page to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-category.php and that will be used instead.
*/
get_template_part( 'loop', 'category' );
?
Since the comments mention setting up a child theme, I went ahead and followed these instructions (via this answer) to set up a child theme so I could add my custom functionality.
I see from the comments that I'm supposed to create a file called loop-category.php with my custom implementation, but I don't know what code I need to put in that file. What do I need to add to loop-category.php to get Category views to show up with full blog posts?
NOTE: While I've been using Wordpress for quite a while, this is my first dive into theme customization. Any help would be much appreciated.
Topic theme-twenty-ten categories theme-development themes Wordpress
Category Web