我有这个循环,我不知道为什么,我有一个“加载更多”按钮,当我点击它时,它会再次加载所有文章。
有人能帮忙吗?
<div class="content">
<div class="container load_more">
<div class="row">
<?php
$args = array(\'category_name\' => \'actu, quizz\' );
$the_query = new WP_Query ($args);?>
<?php
if($the_query->have_posts()):
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<div class="col-md-4 col-lg-4 col-sm-6 col-xs-12">
<div class="le_post_entier ">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(\'actus\'); ?></a>
<div class="col-md-12 postbody ">
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?></a>
</div>
<a class="cta" href="<?php the_permalink(); ?>">DÉCOUVRIR →</a>
</div>
</div>
<?php endwhile; ;endif;
?>
</div>
</div>
</div>
UPDATE 我已经关闭了标签,但仍然循环了两次