我在我的文章中的圖片,我可以顯示他們要麼:WordPress的獲取圖像的外部鏈接(「鏈接」)
//$full_img_url = wp_get_attachment_url($attachment->ID);
//echo '<img src="'.$full_img_url.'">';
或
echo(wp_get_attachment_link($attachment->ID,'full'));
我的圖片都鏈接到外部URL(如果您編輯圖像,則爲鏈接元數據)。不過,我無法找到一種方式來獲得外部鏈接...
我試圖從我的文章附件的的var_dump,無法找到它......
任何想法,這些鏈接存儲?
謝謝
https://coderwall.com/p/9z2jja/using-wordpress-attached-image-custom-url-outside-the-content – Christina
你是指附件頁面,即'yourwebsite/some-post/some-image/'或圖像的img src,例如'yourwebsite/wp-content/uploads/date/some-image.jpg' –
當您在圖像上放置圖像並編輯圖像時,會出現一個選項,稱爲鏈接到。我想在我的模板中顯示所有圖像,並且當您單擊圖像時,它會轉到鏈接到字段中定義的URL。但不知何故,我無法檢索它。它不在get_post_meta(ID) – OlivierS