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

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

創(chuàng)建一個(gè)wordpress函數(shù),以類別ID作為參數(shù),但無法獲取正確的數(shù)據(jù)

創(chuàng)建一個(gè)wordpress函數(shù),以類別ID作為參數(shù),但無法獲取正確的數(shù)據(jù)

PHP
紅糖糍粑 2023-07-08 20:19:56
我試圖在&ldquo;functions.php&rdquo;中創(chuàng)建一個(gè)函數(shù),每次調(diào)用它時(shí)我只需要告訴我想要哪個(gè)類別ID。最終結(jié)果應(yīng)該是這樣的:?Mockup - Posts inside a Carousel如果沒有函數(shù),我可以在&ldquo;front-page.php&rdquo;文件中執(zhí)行此操作,但如果我開始插入更多類別,代碼將變得過于混亂和重復(fù)?,F(xiàn)在這就是我所擁有的(front-page.php):<div id="carouselExampleControls" class="carousel slide" data-ride="carousel"><div class="carousel-inner">? <?php?? ? $args = array(? ? ? 'posts_per_page' => -1,? ? ? 'post_type' => 'post',? ? ? 'orderby' => 'date',? ? ? 'order' => 'ASC',? ? ? 'category__in' => 1515? ? );? ? ? ? ? ? ? ??? ? ? ? ? ? $firstCategory = get_posts( $args );? ? $i = true;? ? foreach (array_chunk($firstCategory, 3, true) as $firstCategory) : ?>? ? ? <div class=" carousel-item <?php echo $i ? ' active' : '' ?>">? ? ? ? <?php foreach( $firstCategory as $post ) : setup_postdata($post); ?>? ? ? ? ? <div class="card col-4">? ? ? ? ? ? ? ? ? ? ? ? ? ??? ? ? ? ? ? ? ? ? ? ? ? ? ? <?php if( has_post_thumbnail() ) :? ?>? ? ? ? ? ? ? ? ??? ? ? ? ? ? ? <div class="card-header">? ? ? ? ? ? ? ? <a href="<?php the_permalink() ?>">? ? ? ? ? ? ? ? ? <?php the_post_thumbnail('thumbnail', array(? ? ? ? ? ? ? ? ? ? 'alt' => trim(strip_tags( $post->post_title )),? ? ? ? ? ? ? ? ? ? 'title' => trim(strip_tags( $post->post_title ))? ? ? ? ? ? ? ? ? )); ?>? ? ? ? ? ? ? ? </a>? ? ? ? ? ? ? </div>? ? ? ? ? ? ? ? ??? ? ? ? ? ? ? <?php endif; ?>? ? ? ? ? ? ? ? <div class="card-body">? ? ? ? ? ? ? ? ? <h3 class="card-title"> <?php the_title(); ?> </h3>? ? ? ? ? ? ? ? ? <p class="card-text"> <?php?? ? ? ? ? ? ? ? ? ? if(has_excerpt()) {? ? ? ? ? ? ? ? ? ? ? echo get_the_excerpt();?? ? ? ? ? ? ? ? ? ? } else {? ? ? ? ? ? ? ? ? ? ? echo wp_trim_words(get_the_content(), 15);? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ?>?? ? ? ? ? ? ? ? ? ??? ? ? ? ? ? ? ? ? </p>? ? ? ? ? ? ? ? ? ? <a href=" <?php the_permalink(); ?>" class="card-link">Ver mais</a>? ? ? ? ? ? ? ? </div>? ? ? ? ? </div>快速解釋一下,此代碼從類別中獲取帖子,并每次在輪播中插入 3 個(gè)帖子。當(dāng)我在&ldquo;functions.php&rdquo;中執(zhí)行此操作時(shí),我無法檢索所有正確的數(shù)據(jù)。只有鏈接和標(biāo)題就可以了。
查看完整描述

1 回答

?
炎炎設(shè)計(jì)

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

我們可以修復(fù)/改進(jìn)一些事情,但您最緊迫的問題是

  • has_excerpt接受帖子或帖子 ID,更改has_excerpt($post->post_excerpt)has_excerpt($post)

  • trim(strip_tags($post->ID))只是給你 ID,你想要?jiǎng)e的東西,也許是 post_title trim(strip_tags($post->post_title))

另外,不要setup_postdata($post)在循環(huán)中使用

  • 使用get_the_post_thumbnail($post, 'thumbnail', $args)而不是the_post_thumbnail('thumbnail', $args)

  • 并使用get_the_excerpt($post)而不是the_excerpt()

注意:默認(rèn)屬性為get_the_post_thumbnail

$default_attr = [

    'src'   => $src,

    'class' => "attachment-$size_class size-$size_class",

    'alt'   => trim( strip_tags( get_post_meta( $attachment_id, '_wp_attachment_image_alt', true ) ) ),

];

簡而言之,您的主要問題是您混淆了全局 $post 和本地范圍的 $post (及其元數(shù)據(jù))。the_post_thumbnail并 the_excerpt檢查全局 $post,但has_post_thumbnail使用has_excerpt本地 $post。Plussetup_postdata($post)也會(huì)導(dǎo)致一些連鎖問題。最好的解決方案是完全忽略全局 $post。



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

添加回答

舉報(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)