下面是单条代码。phpand我想添加循环。无论我把endif放在哪里,我都会出错。请问我可以在哪里添加它?
更新的代码:
并提前表示感谢。
<div class="row">
<div class="col-md-8">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="blog-post">
<div class="single-post">
<div class="post-thumb">"><img src="<?php the_post_thumbnail_url(); ?>" alt="blog thumb" /></div>
<div class="blog-single-content">
<div class="blog-list-content">
<p class="post-meta">Posted By <a href="#"> <?php the_author(); ?> </a></p>
<h3 class="blog-title"> <?php the_title(); ?> </h3>
<?php the_content(); ?>
</div> <!-- class="blog-list-content" -->
</div> <!-- class="blog-single-content" -->
</div> <!-- class="single-post" -->
</div> <!-- class="blog-post" -->
<?php endif; ?>
<?php endwhile; ?>
<?php comments_template(); ?>