In your theme directory, edit the index.php file by changing
<?php the_content(); ?>
to
<?php
if (is_single() or is_page()) {
the_content();
} else {
the_excerpt();
}
?>
In your theme directory, edit the index.php file by changing
<?php the_content(); ?>
to
<?php
if (is_single() or is_page()) {
the_content();
} else {
the_excerpt();
}
?>