Excerpt in WordPress
To change your WordPress blog to only show the excerpt on the main page. In the file index.php
Find the section
<div class=”storycontent”>
<?php the_content(__(‘(more…)’)); ?>
</div>
and replace it with:
<div class=”storycontent”>
<?php
if (is_home()) {
the_excerpt(__(‘(more…)’));
} else {
the_content(__(‘(more…)’));
}
?>
</div>
Drew,
Thank you for taking a look at the WordPress theme Gravel! I will implement this code in Gravel 1.4!
Hi, interest post. I’ll write you later about few questions!
Hi, very nice post. I have been wonder’n bout this issue,so thanks for posting
How soon will you update your blog? I’m interested in reading some more information on this issue.