potresti utilizzare il tag more nel loop dell' articolo
modifichi poi il contenuto nel loop così

codice:
<?php if ( have_posts() ): while ( have_posts() ) : the_post();	?>
	<div>			
              <?php 
			global $more;
			$more = 0;
        		the_content('',false); 
             ?>
          </div>
<?php endwhile; // end of the loop.  ?>