我正在嘗試使用 ACF 將圖像放在我的模板頁面之一上。我對變量進行了 var_dump,數(shù)據(jù)就在那里。為什么我的圖像沒有顯示?我嘗試將其包裝在標(biāo)簽中,但沒有返回任何內(nèi)容。有什么建議么? <?php $first_img = get_field('image_first'); ?> <div class="panel--standard"> <div class="container container__grid"> <div class="container__col"> <h2><?php echo get_field("heading_first"); ?></h2> <div> <?php echo get_field($first_img['url']); ?> </div> <!-- <p><?php var_dump($first_img['url'])?></p> --> </div> <div class="container container__col"> <p><?php echo get_field("content_first"); ?></p> </div> </div> </div>
1 回答

交互式愛情
TA貢獻1712條經(jīng)驗 獲得超3個贊
高級自定義字段可以設(shè)置為通過多種方式返回數(shù)據(jù)。從您的代碼看來,該圖像字段設(shè)置為返回“Array”。所以你抓取它的方式, $first_img 是一個數(shù)據(jù)數(shù)組, URL 是原始的、未裁剪的圖像的來源。您實際上擁有的并不是“圖像”本身 - 只是數(shù)據(jù)。
在這一行中,您嘗試使用不正確的 URL 來重新獲取字段數(shù)據(jù):
<?php echo get_field($first_img['url']); ?>
相反,您正在尋找的是這樣的:
<img src="<?php echo $first_img['url']; ?>" alt="<?php echo $first_img['alt']; ?>"/>
- 1 回答
- 0 關(guān)注
- 128 瀏覽
添加回答
舉報
0/150
提交
取消