archive只显示摘要问题

Posted on 2005-03-18 20:53  freshventure  阅读(337)  评论(0编辑  收藏  举报

The Kubrick (default) theme uses the_excerpt() tag for category and archive pages. Open archive.php for that theme (found in wp-content/themes/default/) in a text editor and where you find this:

<div class="entry">
<?php the_excerpt() ?>
</div>

Change it to this:

<div class="entry">
<?php the_content() ?>
</div>