【发布时间】:2016-04-06 17:18:04
【问题描述】:
我一直在四处寻找,但找不到合适的解决方案。我的目标是使第一篇文章的样式与其他文章不同。我将它们放在一个 3*3 的网格中,我想首先发布全角,在该帖子中添加日期和类别等功能。
无法使用 CSS。
以下代码在 index.php 中生成循环。
<?php $i = 1; ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part('content','grid'); ?>
<?php if ($i%3 == 0) : ?>
<div class="clearfix"></div>
<?php endif; $i++; ?>
<?php endwhile; wp_reset_query(); endif; ?>
我不确定如何做到这一点?
【问题讨论】: