不同风格的帖子


Style post differently

我一直在四处寻找,但找不到合适的解决方案。我的目标是让第一篇帖子的风格与其他帖子不同。我把它们放在一个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; ?> 

我不知道该怎么做?

您可以单独输出第一篇文章,然后在之后继续循环

<div class="first-post">
   <?php if (have_posts()) : the_post(); ?> 
   <!-- calling the_post(); will step the loop forward -->
   <h1><?php the_title() ?></h1>
   <?php the_content() ?>
   <?php endif; ?> 
</div>

<div class="other-posts">
    <?php $i = 1; ?>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>                    
        <!-- the loop will be at the 2nd post here -->
        <?php get_template_part('content','grid'); ?>                                          
        <?php if ($i%3 == 0) : ?>
            <div class="clearfix"></div>
        <?php endif; $i++; ?>
    <?php endwhile; wp_reset_query(); endif; ?>  
</div>