主页上的多个帖子视图

时间:2014-12-07 21:56:59

标签: php wordpress-theming wordpress

我想在主页上设置不同的帖子视图(也包括档案和类别​​页面)。 例如,要有第一篇文章的全宽缩略图和摘录,接下来的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张贴后显示所有这些可重复的内容? 或者也许有这种模板的插件?

1 个答案:

答案 0 :(得分:1)

重置你的$ c,如果它达到4

例如

elseif( !$paged && $c == 4) {
the_title();
$c=0
}