十月 20
限制 wordpress 文章顯示數量
在wordpress後台 設定→閱讀 中設置數目的話
則首頁/archive.php/category.php 顯示都會一樣
若想要自己限制文章數
最快的方法就是自己加語法
找到
<?php if (have_posts()) : ?>
在前面加入
<?php query_posts('showposts=1'); ?>
顯示最新的 1篇文章, 顯示數量自己改
<?php query_posts('showposts=5&offset=1'); ?>
offset=不顯示/排除
本文僅提供語法
請自行運用修改
Posted in: WordPress.
Tagged: WordPress
This entry was posted
on 星期一, 十月 20th, 2008 at 3:24 下午 and is filed under WordPress.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.