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

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

如果 PHP 計(jì)數(shù)器等于 WordPress 回顯類中的 4 個(gè)項(xiàng)目無法正常工作

如果 PHP 計(jì)數(shù)器等于 WordPress 回顯類中的 4 個(gè)項(xiàng)目無法正常工作

PHP
拉丁的傳說 2022-05-27 16:49:01
我正在使用 WordPress 和高級(jí)自定義字段。我為每個(gè)循環(huán)創(chuàng)建了一個(gè),一切正常。但是我不希望顯示具有“草稿”狀態(tài)的帖子這也可以,但是如果帖子的數(shù)組長(zhǎng)度等于或大于 4 個(gè)帖子,我想顯示一個(gè)不同的 HTML 類“col-sm-6”但這不起作用?;旧希绻右寻l(fā)布且數(shù)組長(zhǎng)度等于 4,則更改類,否則什么也不做。但由于某種原因,它沒有按應(yīng)有的方式工作。有人可以幫我嗎?我的代碼:<?php$posts = get_field('home_add_news');$counter = 0;if($posts):?><section id="news">    <div class="container">        <div class="row">            <?php            foreach( $posts as $post):            $post_date = get_the_date( 'd M Y' );            $post_img_url = get_the_post_thumbnail_url($post->ID, 'full');            $post_categories = get_the_category( $post->ID );            $post_category = $post_categories[0]->cat_name;            $post_class = '';            if(has_category('nieuws')):                $post_class = 'news__block--image';            elseif(has_category('project')):                $post_class = 'news__block--primary';            elseif(has_category('proces')):                $post_class = 'news__block--secondary';            elseif(has_category('tijdlijn')):                $post_class = 'news__block--tertiary';            else:                $post_class = 'news__block--tertiary';            endif;            if ('publish' === $post->post_status):            $counter++;            ?>
查看完整描述

1 回答

?
蕭十郎

TA貢獻(xiàn)1815條經(jīng)驗(yàn) 獲得超13個(gè)贊

我假設(shè)您正在嘗試顯示col-sm-6大于 4 的帖子的類。


有幾件事,你可以做它來使它工作。


刪除循環(huán)$counter后遞增的代碼。foreach我們將在下面的第 2 步中執(zhí)行此操作。

            foreach( $posts as $post):

            //$counter++; This should be commented.

相反,我們應(yīng)該if在您檢查狀態(tài)的塊內(nèi)增加這個(gè)計(jì)數(shù)器。

            if ('publish' === $post->post_status):


               //echo $counter;  //Comment this out

               $counter++;  //increment it here

            ?>

最后一步是確保當(dāng)$counter大于或等于 4 時(shí)顯示我們的類。正如@Kaperto 所建議的,您不需要在draft此處檢查狀態(tài),因?yàn)槟呀?jīng)在檢查上述狀態(tài)。

所以取出以下行


<div class="col-custom <?php if ('draft' != $post->post_status && $counter == 4): echo 'col-sm-6'; endif; ?>">

并將其更改為


<div class="col-custom <?php if ($counter >= 4): echo 'col-sm-6'; endif; ?>">


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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