亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

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

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

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

PHP
精慕HU 2023-07-08 16:34:47
這看起來很簡單,但我無法讓它發揮作用。我想要的只是顯示一個存儲為自定義字段的標題(它是 h3 標簽)。我在代碼中的另一個地方使用它并且它有效,但不在頁腳中。ACF 是否僅在某些領域起作用,而在其他領域不起作用?<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貢獻1893條經驗 獲得超10個贊

當您使用 ACF 函數獲取 Wordpress“循環”之外的字段值時,您需要將帖子 id 作為第二個參數傳遞到函數中,例如


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

the_field("cta_field_title", $post_id);

(僅供參考,您不需要將 echo 與the_field... 一起使用,該函數已顯示該值。但是您確實需要將其與 等一起使用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>


查看完整回答
反對 回復 2023-07-08
  • 1 回答
  • 0 關注
  • 133 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號