How to enable post from showing the full text instead of summary

Discussion in 'WordPress' started by mpak11, Sep 17, 2010.

  1. #1
    I am using a theme called Vesper (http://wordpress.org/extend/themes/vesper)
    and when you click on the categories, it will show only excerpts of each post,instead of the whole content...

    How will I enable it to show the full content of the post when you click on the categories, instead of just excerpts.
     
    mpak11, Sep 17, 2010 IP
  2. s_ruben

    s_ruben Active Member

    Messages:
    735
    Likes Received:
    26
    Best Answers:
    1
    Trophy Points:
    78
    #2
    Open the file wp-loop.php from the theme directory and change

    
    <div class="post-entry">
    	<?php if(is_page() || is_single()) { ?>
    <?php the_content('Continue Reading &raquo;'); ?>
        <?php } else { ?>
        <?php the_excerpt_reloaded(100, '<h3>,<h4>,<a>,<img>,<p>,<ul>,<ol>,<li>', 'content', TRUE, 'Continue Reading', FALSE, 2); ?>
        <?php } ?>
    </div>
    
    PHP:
    to

    
    <div class="post-entry">
        <?php the_content('Continue Reading &raquo;'); ?>
    </div>
    
    PHP:
     
    s_ruben, Sep 17, 2010 IP