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

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

ACF 不顯示 wp 主題頁腳中的值

ACF 不顯示 wp 主題頁腳中的值

PHP
精慕HU 2023-07-08 16:34:47
這看起來很簡單,但我無法讓它發(fā)揮作用。我想要的只是顯示一個(gè)存儲為自定義字段的標(biāo)題(它是 h3 標(biāo)簽)。我在代碼中的另一個(gè)地方使用它并且它有效,但不在頁腳中。ACF 是否僅在某些領(lǐng)域起作用,而在其他領(lǐng)域不起作用?<footer class="section section--footer">    <div class="section--footer__header">$post_id = get_queried_object_id();        <h3 class="text-white"><?php echo the_field("cta_field_title",$post_id);?></h3>    </div>    <form action="#" class="section--footer__form">        <div class="section--footer__input-box center">            <label for="name"></label>            <input type="text" id="name" placeholder="name" class="input">            <label for="email"></label>            <input type="text" id="email" placeholder="email address" class="input">        </div>        <div class="button__box center">            <a href="#" class="button">Submit</a>        </div>    </form>    <div class="section--footer__links">        <?php wp_nav_menu(array(            "theme_location" => "footer",            "menu" => "desktop",            "menu_class" => "section--footer__links"        )) ?>        <?php wp_nav_menu(array(            "theme_location" => "social",            "menu" => "desktop",        )) ?>    </div></footer><?php wp_footer() ?></body></html>
查看完整描述

1 回答

?
白豬掌柜的

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

當(dāng)您使用 ACF 函數(shù)獲取 Wordpress“循環(huán)”之外的字段值時(shí),您需要將帖子 id 作為第二個(gè)參數(shù)傳遞到函數(shù)中,例如


$post_id = get_queried_object_id(); // gets the id of the current page/post

the_field("cta_field_title", $post_id);

(僅供參考,您不需要將 echo 與the_field... 一起使用,該函數(shù)已顯示該值。但是您確實(shí)需要將其與 等一起使用get_field)get_fields。


所以你的頁腳看起來像這樣:


<footer class="section section--footer">

    <div class="section--footer__header">

        <?php $post_id = get_queried_object_id();  /* get the current page/post id */ ?>

        <h3 class="text-white"><?php the_field("cta_field_title", $post_id);?></h3>

    </div>

    // rest of your code here

</footer>


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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