DIY个性Wordpress首页文章进阶
Wopus有篇文章讲述了如何DIY个性Wordpress首页文章。而碰巧最近我也想把我博客的首页改进一下,以前我的博客就是用的上述方法在首页显示第一篇文章的全文,其余文章摘要或者标题显示。
那么,有人会问啦,如果我想让前2篇或前3篇文章都全文显示,而剩余文章只显示标题或摘要呢?方法其实很简单,只需要将上文的代码稍作修改即可,请看下面2种方案:
1. 前2篇文章显示全文,剩余文章显示摘要:
将以下代码
< ?php if ($postcnt == 1) : ?>
< ?php the_content(); ?>
< ?php else : ?>
< ?php the_excerpt(); ?>
< ?php endif; $postcnt++; ?>
修改为:
如果你想让前3篇或前4篇文章都显示全文,你该知道怎么办啦吧?
2. 前2篇文章显示全文,剩余文章只显示标题(实际效果参见本博客首页):
将以下代码
< ?php if ($postcnt == 1) : ?>
< ?php the_content(); ?>
< ?php else : ?>
< ?php the_excerpt(); ?>
< ?php endif; $postcnt++; ?>
改为: