【发布时间】:2014-12-08 15:31:46
【问题描述】:
我想在主页(还有存档和分类页面)上设置不同的帖子视图。 例如,第一个帖子有全宽缩略图和摘录,接下来的 2 个帖子有小拇指,没有摘录,第 4 个帖子只有一个标题。然后又是全宽拇指等。
我是这样开始的:
<?php if (have_posts()) : $post = $posts[0]; $c=0; while (have_posts()) : the_post();
$c++;
if( !$paged && $c == 1) :
the_title();
the_post_thumbnail( 'big-thumb' );
the_excerpt();
elseif( !$paged && $c == 2 || $c == 3) :
the_title();
the_post_thumbnail( 'small-thumb' );
elseif( !$paged && $c == 4) :
the_title();
...
在显示第 4 篇文章后,如何使所有这些可重复? 或者也许有这种模板的插件?
【问题讨论】:
标签: php wordpress-theming wordpress