第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

當(dāng)Wordpress博客文章顯示為精選時(shí),從主列表中隱藏它

當(dāng)Wordpress博客文章顯示為精選時(shí),從主列表中隱藏它

PHP
catspeake 2022-08-05 09:48:45
根據(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)該選擇“精選”不等于“!=”是“的所有帖子。


查看完整回答
反對(duì) 回復(fù) 2022-08-05
  • 1 回答
  • 0 關(guān)注
  • 127 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)