ibecker
Member
Posted 2 years ago #
I want it when I click any of the categories that it shows the FULL posts listed on the respective category page, not just some excerpts from the posts. I'm pretty sure I narrowed it down to being an archive.php issue but I can't seem to fix it. Thanks in advance. Please let me know if you need anything else!
If the file contains the_excerpt() anywhere, change that to the_content()
Look in archives.php for something like:
<?php the_excerpt('Read the rest of this entry »'); ?>
and remove it or comment it out
and look at:
http://codex.wordpress.org/Template_Tags/the_content
ibecker
Member
Posted 2 years ago #
thanks, going to try some of those things out. i'll let you know how it goes!
ibecker
Member
Posted 2 years ago #
i couldn't find a file like that in my archives.php file or my archive.php file. any other suggestions? i'm using this theme- http://themes.wordpress.net/columns/3-columns/1808/juicy-10/
so hopefully that might be of assistance to you.
rudolf45
Member
Posted 2 years ago #
Not archives.php - archive.php, no S!
ibecker
Member
Posted 2 years ago #
i couldn't find it in either...let me check archive 1 more time.
ibecker
Member
Posted 2 years ago #
ibecker
Member
Posted 2 years ago #
I figure it out! I needed to change category.php from <?php the_excerpt() ?> to <?php the_content() ?> like you said Samboll, just on a different page. Thanks for all your replies!
I found the information pertaining to this here: http://codex.wordpress.org/Category_Templates