交替的Wordpress帖子

时间:2016-08-21 04:11:35

标签: wordpress zurb-foundation posts

我正在为一个客户创建的Wordpress网站使用JointsWP。

他们希望帖子在帖子循环时交替显示。

例如,POST1:左侧的特征图像和右侧的标题/摘录; POST2:左侧的标题/摘录,右侧的特征图像。等等。

有人发现这运气好吗?

<?php
$args = array( 'posts_per_page' => 2, 'offset' => 2, );
$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
<div class="row">
<div class="large-6 columns">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail(); ?>
</a>
</div>
<div class="large-6 columns">
<?php the_date(); ?>
<a href="<?php the_permalink(); ?>">
<h3><?php the_title(); ?></h3>
</a>
<?php the_excerpt(); ?>
</div>
<div class="large-12 columns">
<hr>
</div>
</div>

<?php endforeach; wp_reset_postdata();?>

1 个答案:

答案 0 :(得分:0)

别介意人,我发现Zurb有一个功能可以用一个简单的类来实现这个目标。

只需创建一个计数器来计算帖子并使其成为一个不同的类。

http://foundation.zurb.com/sites/docs/v/5.5.3/components/grid.html#source-ordering