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.
In the file wp-loop.php <div class="post-entry"> <?php if(is_page() || is_single()) { ?> <?php the_content('Continue Reading »'); ?> <?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 »'); ?> 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 »'); ?> </div> PHP: My question is why do you want to do this in the first place?