Condensing Archived & Categorized Posts
-
I am new to WordPress – ‘nough said about that!
I am sorry I don’t know the specific terminology to use for this question but I am using a theme I have downloaded for WordPress and except for the current posts, it condenses the posts filed in the archives or categories sections to only five or six lines and then you have to click on the ‘permalink’ button to unroll the post to read it. I have experimented with about six themes and about half of them do this while the other half don’t. Unfortunately, the theme I particularly like rolls these posts up which is something I don’t like. Is this something that is easy to revise so that all the post show in their entirety when displayed? Is what I have copied and pasted below what I need for this situation.
***********************************************************
Use with Conditional TagsReplaces the_content() tag with the_excerpt() when on archive (tested by is_archive()) or category (is_category()) pages.
Both the examples below work for versions 1.5 and above.
<?php if(is_category() || is_archive()) {
the_excerpt();
} else {
the_content();
} ?>***********************************************************
Also…..I guess I should also ask if these posts being condensed to only a few lines when archived or categorized actually accomplishes something I may not be aware of?Thanks….Alan
The topic ‘Condensing Archived & Categorized Posts’ is closed to new replies.