根據(jù)下面的圖像 - 我有一個(gè)博客存檔頁面,該頁面將特色博客文章顯示為大型博客文章,然后顯示其下面的所有博客文章。我想在主博客循環(huán)中添加一些內(nèi)容來說明:如果博客文章是精選的,請(qǐng)不要在此處顯示所以我可以停止重復(fù)的博客文章出現(xiàn)(一個(gè)特色,然后在主博客循環(huán)中出現(xiàn)相同的一個(gè))。我有兩段代碼,一段用于拉動(dòng)特色帖子,另一位用于循環(huán)所有帖子。這里<!-- Featured Blog Item --><?php$loop = new WP_Query( array( 'post_type' => 'post', 'posts_per_page' => -1, 'meta_key' => 'featured', 'meta_value' => 'yes' ));?><div class="container"><div class="row no-gutters"><?php while ( $loop->have_posts() ) : $loop->the_post(); ?> <div class="col-12"> <a href="<?php the_permalink(); ?>"> <div class="hero__overlay featured-grad-blog"> </div> </a> <div class="featured-blog-container"> <h3><?php the_title(); ?></h3> <p><?php the_date(); ?></p> </div> <?php $feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?> <div class="featured-blog-grid-image-container" style="background-image:url(<?php echo $feat_image; ?>);"></div> </div><?php endwhile; wp_reset_query(); ?></div></div><!-- All Blog Items --><?php$loop = new WP_Query( array( 'post_type' => 'post', 'posts_per_page' => -1 ));?><div class="container blog-page-container"> <div class="row blog-page-row"> <?php while ( $loop->have_posts() ) : $loop->the_post(); ?> <div class="col-lg-4 col-sm-6 col-xs-12 blog-page-col"> <div class="blog-image" style="position: relative;"> <a href="<?php the_permalink(); ?>"> <div class="hero__overlay grad-blog-hover"></div> </a> <?php $feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?> <div class="blog-grid-image-container blog-page-image blog-post-image-div" style="background-image:url(<?php echo $feat_image; ?>);"></div> </div> <div class="blog-title"> <a href="<?php the_permalink(); ?>"> <h4><?php the_title(); ?></h4> </a> </div>
1 回答

繁花不似錦
TA貢獻(xiàn)1851條經(jīng)驗(yàn) 獲得超4個(gè)贊
對(duì)于非特色部分,請(qǐng)嘗試以下操作:
<!-- All Blog Items -->
<?php
$loop = new WP_Query( array(
'post_type' => 'post',
'posts_per_page' => -1,
'meta_query' => array(
array(
'key' => 'featured',
'value' => 'yes',
'compare' => '!='
)
)
)
);
?>
這應(yīng)該選擇“精選”不等于“!=”是“的所有帖子。
- 1 回答
- 0 關(guān)注
- 127 瀏覽
添加回答
舉報(bào)
0/150
提交
取消