0
我有一個擁有自定義帖子的WordPress網站,我試圖在Feed中輸出元數據。 feed將是一個json對象,但是我遇到的問題是,對於圖像url的一個字段,其值爲「field_53ecfb598628f」。我不知道這是什麼或如何到達圖像的網址。嘗試從自定義帖子的元數據中獲取圖片網址
來獲取值我用下面的代碼:
$terms = get_the_terms($post->ID, '_photos_0_photo');
if(!empty($terms))
{
$term = array_pop($terms);
$custom_field = get_field('_photos_0_photo', $term);
$test = $custom_field;
}
和$測試將被設置爲「field_53ecfb598628f」。如何從這個值中找到我的網址?