解決策は
<div class="comment"">
<?php global $more; $more = 0; ?>
<?php the_content(__('(more...)')); ?>
</div>
まとめ
TOPページなどの固定ページに新着情報を表示する
<?php
$lastposts = get_posts('numberposts=10&offset=0');
foreach($lastposts as $post) :
setup_postdata($post);
?>
<div id="top-news">
<div class="day"><?php the_time('Y.m.d');?></div>
<div class="title"><?php the_title(); ?></div>
<div class="comment">
<?php global $more; $more = 0; ?>
<?php the_content(__('(more...)')); ?>
</div>
</div>
<?php endforeach; ?>
<?php $text= mb_substr(strip_tags($post-> post_content), 0, 65); echo $text. '...'; ?>