我在主页上使用了两个循环,一个显示特色类别中的最后一篇文章,另一个显示所有文章的通用循环。问题是我在同一页的两个循环中都得到了特色类别中的最后一篇文章。它基本上复制了该页面上的帖子。我似乎只能找到如何排除整个类别,我知道如何做到这一点。这不是我需要的。我只想从功能类别中排除最新的帖子。
我想我可以从已经显示的特色类别中提取帖子的ID,将其存储在变量中,然后将该变量从主循环中排除。然而,我是wordpress和php的初学者,不太清楚如何做到这一点。
有什么想法吗?
编辑:这是我要更改的代码:
<?php
$myPosts = new WP_Query( \'category_name=Featured&posts_per_page=1\' );while ( $myPosts->have_posts() )
: $myPosts->the_post();
?>
<?php
if (has_post_thumbnail( $post->ID ) ):
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), \'single-post-thumbnail\' );
endif;
$image_url = $image[0];
?>
<div class="index-featured-post"
style="background:linear-gradient(to bottom, rgba(26,26,26,0.8) 0%, rgba(110,110,110,0.5) 50%, rgba(26,26,26,0.8) 100%), url(<?php echo $image_url; ?>)">
<div class="row">
<div class="large-8 large-centered columns">
<span class="cat-index"><?php the_category(); ?></span>
<?php the_title( sprintf( \'<h1 class="entry-title"><a href="%s" rel="bookmark">\', esc_url( get_permalink() ) ), \'</a></h1>\' ); ?>
<span class="post-tag-line"><?php the_field(\'post_tag_line\'); ?></span>
<p class="ert-featured"><?php acn_estimated_reading_time() ?></p>
</div>
</div>
</div>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
get_template_part( \'content\', get_post_format() );
?>
<?php endwhile; ?>
<?php endif; ?>