Community Support Forums — WordPress® ( Users Helping Users ) — 2010-11-18T09:44:43-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=1220 2010-11-18T09:44:43-05:00 http://www.primothemes.com/forums/viewtopic.php?t=1220&p=4755#p4755 <![CDATA[Re: Post Excerpts]]> Statistics: Posted by crushthenet — November 18th, 2010, 9:44 am


]]>
2010-11-18T01:12:07-05:00 http://www.primothemes.com/forums/viewtopic.php?t=1220&p=4744#p4744 <![CDATA[Re: Post Excerpts]]> http://wordpress.org/support/topic/show-full-post-in-category-and-archive-with-twenty-ten and edited the loop.php file using:

Code:
Try looking in loop.php. It's in the third (lowest) of the three Loops in that file.

<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>

Try changing it to:

<?php if ( is_search() ) : // Only display excerpts for search. ?>


and that seems to have done the trick.

Thanks!
Keith

Statistics: Posted by keithb — November 18th, 2010, 1:12 am


]]>
2010-11-17T23:45:40-05:00 http://www.primothemes.com/forums/viewtopic.php?t=1220&p=4743#p4743 <![CDATA[Re: Post Excerpts]]>
Your archive.php file in your themes folder should control this.

The code looks like this..
Code:
<?php the_content(__('Read the rest of this entry &raquo;', 'smpl')); ?>


Info on how it works is in the codex, here......
http://codex.wordpress.org/Function_Reference/the_content

In the codex it says you need this in that file to display all........probably at the top of the file.
Code:
<?php
global $more;    // Declare global $more (before the loop).
$more = 1;       // Set (inside the loop) to display all content, including text below more.
the_content();
?>


Not sure exactly what your code looks like so I can't give you a precise fix, but this should get you going in the right direction hopefully.

Statistics: Posted by crushthenet — November 17th, 2010, 11:45 pm


]]>
2010-11-17T23:31:05-05:00 http://www.primothemes.com/forums/viewtopic.php?t=1220&p=4741#p4741 <![CDATA[Post Excerpts]]>
Thanks,
Keith

Statistics: Posted by keithb — November 17th, 2010, 11:31 pm


]]>