How to show full text in home page

Discussion in 'WordPress' started by mpak11, Feb 4, 2011.

  1. #1
    I am using the theme Vesper, its a free wordpress theme....

    http://wordpress.org/extend/themes/vesper

    On the home page which is the latest post, it only shows excerpts of the post, not the full text...

    So how will I enable it to show the full text instead ...

    thanks in advance.
     
    mpak11, Feb 4, 2011 IP
  2. Dodger

    Dodger Peon

    Messages:
    1,494
    Likes Received:
    60
    Best Answers:
    0
    Trophy Points:
    0
    #2
    In the file wp-loop.php

    					
    <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:
    Replace the whole line after the "else" where the_excerpt_reloaded() with
    <?php the_content('Continue Reading &raquo;'); ?>

    Basically you can wipe out the conditional check for page/single altogether and just post the_content().
    					
    <div class="post-entry">
    	<?php the_content('Continue Reading &raquo;'); ?>
    </div>
    
    PHP:
    My question is why do you want to do this in the first place?
     
    Dodger, Feb 4, 2011 IP