我正试图将我的wordpress帖子打印到2/2的网格中,但我认为我的分区被搞砸了。
<div class="grid-container">
<?php
if($query->have_posts()):
while($query->have_posts()):
$query->the_post();
if ( has_post_thumbnail() ):
echo \'<div class="grid">\'
?>
<?php the_post_thumbnail(\'medium_large\');
endif;
?>
<h1 class="page-sub-main-header" style="color: #00adee;">
<a href="<?php the_permalink(); ?>">
<?php the_title() ?>
</a>
</h1>
<p><?php the_excerpt();?></p>
<div class="footer-meta">
<a href="$query->the_permalink()"><?php the_category(); ?> </a>
<span> <?php the_date(\'d/m/Y\'); ?></span>
</div>
<?php endwhile; ?>
<?php endif;
echo \'</div>\';
?>
</div><!--grid container-->
我做错了什么?