Use the_excerpt instead of the_content.
However, length of the excerpt is hard coded to 55 words and you need to change that in some way - for example, putting these code in functions.php in your theme directory.
/*
* copied from wp_trim_excerpt in wp-includes/formatting.php
*/
function wp_trim_excerpt_100($text) {
if ( '' == $text ) {
$text = get_the_content('');
$text = strip_shortcodes( $text );
$text = apply_filters('the_content', $text);
$text = str_replace(']]>', ']]>', $text);
$text = strip_tags($text);
$excerpt_length = 100; //// Changed to 100 words ////
$words = explode(' ', $text, $excerpt_length + 1);
if (count($words) > $excerpt_length) {
array_pop($words);
array_push($words, '[...]');
$text = implode(' ', $words);
}
}
return $text;
}
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
add_filter('get_the_excerpt', 'wp_trim_excerpt_100');