0

现在我为每个帖子有两种尺寸的缩略图:

$big = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'thumbnail_600x200' );
$small = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'thumbnail_200x100' );

我想要实现的是使用下一个模式显示帖子:

帖子 1 - [大缩略图]
帖子 2 - [小缩略图]
帖子 3 - [小缩略图]
帖子 4 - [大缩略图]
帖子 5 - [小缩略图]
帖子 6 - [小缩略图]

实际上帖子会显示大 - 小 - 小 - 大 - 小 - 小等等。

任何的想法?谢谢

这是我的帖子:

<?php foreach ($posts as $post) { 
    $big = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'thumbnail_600x200' );
    $small = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'thumbnail_200x100' );

    if ( $big ) { ?>
        <img src="<?php echo $big['0']; ?>" />
    <?php }else{ ?>
        <img src="http://placehold.it/600x200/7f8c8d/ffffff" alt="Featured image missing"/>
    <?php } ?>
<?php } ?>
4

2 回答 2

1

在函数之外做一个计数器。

在函数内部,递增计数器。但在此之前,请检查它是否计数 % 3 == 0。

如果是这样,请显示大缩略图。

<?php
 $counter = 0;
 foreach ($posts as $post) {  
        if($counter %3 == 0)
        {
           $big = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'thumbnail_600x200' );
        }else{
           $small = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'thumbnail_200x100' );
        }

    if ( $big ) { ?>
        <img src="<?php echo $big['0']; ?>" />
    <?php }else{ ?>
        <img src="http://placehold.it/600x200/7f8c8d/ffffff" alt="Featured image missing"/>
    <?php } ?>
  counter++; //increase the counter
<?php } ?>
于 2014-11-27T11:00:50.523 回答
0

一个指标如何增加每个帖子的大小,从值 3 开始,你总是做模数

if(($i % 3) == 0) { 
  use big 
} else {
  use small
}
$i++;
于 2014-11-27T11:01:00.597 回答