我的WordPress单发帖子在一个循环中连续重复

时间:2019-05-25 08:10:40

标签: wordpress loops

我在index.php中有两个循环

我遇到第一个问题。 我正在显示来自特定网站的帖子。但是当我发布一个帖子时,它会重复显示为每页计数。 一个帖子一遍又一遍地重复。 我的每页帖子数是5,所以该帖子重复了5次。 我该如何解决?

第二个循环只是默认的普通循环。已尝试删除第二个循环,但仍然是问题所在。

<section class="featured-posts">
<div class="container">
<div class="stitle"><h2>Featured Posts</h2></div>
<div class="all-featured-posts owl-carousel">
<?php
$args = array(
'posts_per_page' => 5,
'meta_key' => 'meta-checkbox',
 'meta_value' => 'yes'
);
$featured = new WP_Query($args);

if ($featured->have_posts()): while($featured->have_posts()): $featured-        >the_post(); ?>
  <div class="single-fm">
    <?php
    // Feature post thumbnail.
    if ( has_post_thumbnail() ) {
      the_post_thumbnail();
    }
    else {
      echo '<img src="' . get_bloginfo( 'template_url' ) . '/img/default-image.png" class="attachment-thumbnail wp-post-image" alt="Default image" />';
    } ?>
    <div class="single-fm-info">
    <h3><a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a></h3>
    <span><?php echo get_post_meta($post->ID, 'Release Date', true); ?></span>
  </div>
  </div>
  <?php
  endwhile; else:
  endif;
  ?>
</div>
  </div>
</section>
<div class="clear"></div>

0 个答案:

没有答案