ah danke! Mit nur $more auf 0 gesetzt funktioniert es auch schon
PHP-Code:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php $more = 0; ?>
<?php the_content(''); ?>
<?php endwhile; ?>
.....
<?php while (have_posts()) : the_post(); ?>
<?php the_content('', TRUE); ?>
<?php endwhile; ?>
<?php endif; ?>