wp的分類瀏覽列表模式 - 部落格

Table of Contents

用wp自己架的blog
分類瀏覽文章時想要只show標題就好
目前找到的方式是把archive.php部份改成

<div class="entry">
<h3><a href="<?php the_permalink() ?>" title="Permalink">
<?php the_title();?>
</a>
</h3>
<p class="info">
<em class="date"><?php the_time('Y 年F j 日') ?> at
<?php the_time('h:ia') ?>
</em>
<em class="author">作者:<?php the_author(); ?></em>
<?php edit_post_link('Edit','<span class="editlink">','</span>'); ?>
</p>
</div>

但問題是...
因為首頁設定一頁只會show五篇文章
所以這樣archive一頁也只會show五個標題
請問可以修改嗎?
希望一頁可以show出此分類的全部文章的標題

謝謝大家

--

All Comments

Thomas avatarThomas2008-01-16
外掛 "Different Posts Per Page"
http://www.maxblogpress.com/plugins/dppp/
Anonymous avatarAnonymous2008-01-18
3Q