-1
我的代碼:ACF(WordPress的)the_field不起作用
<p><?php the_field('myimage'); ?></p>
令牌來自:http://www.advancedcustomfields.com/resources/code-examples/
它顯示什麼。爲什麼?
我的代碼:ACF(WordPress的)the_field不起作用
<p><?php the_field('myimage'); ?></p>
令牌來自:http://www.advancedcustomfields.com/resources/code-examples/
它顯示什麼。爲什麼?
如果您需要的<img>
標籤的圖像:
<img src="<?php the_field('myimage'); ?>" />
獲取使用get_field自定義字段值。它返回值數組。要獲取圖片網址,請使用以下代碼。
<?php $image = get_field('myimage'); ?>
<img src="<?php $image['url']; ?>" />
你能提供一個代碼完成嗎?它可能會幫助OP或未來的用戶更多。 – Bono