I have a single category on my blog that I want to display full posts in when looking at the category instead of just slugs.

The category is for Podcasts, and presently it displays slugs which:

I'm using Wordpress 3.0.4 with the Hybrid News theme.

link|improve this question

60% accept rate
feedback

1 Answer

In the appropriate template file, you need to replace the_excerpt() with the_content().

As this is a change specific to a known category (i.e. "podcasts"), I would recommend creating a custom template file for that category, called category-podcasts.php, and making the change in that template file.

To create this template file, look for (in order) category.php, archive.php, or index.php. Copy whichever one you find, and rename it as category-podcasts.php.

If your Theme is loop.php-based, then you will probably want to copy loop.php as loop-podcasts.php, make the change in this file, and then call it within the category-podcasts.php template file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.