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>
- 1 回答
- 0 關(guān)注
- 143 瀏覽
添加回答
舉報(bào)