2015-04-24 60 views

回答

3

如果你看看來源爲wp_get_attachment_image功能,你可以看到alt文本,正在獲取:

'alt' => trim(strip_tags(get_post_meta($attachment_id, '_wp_attachment_image_alt', true))) 

從那裏,它是很容易弄清楚如何更新替代文字。

update_post_meta($attachment_id, '_wp_attachment_image_alt', 'My Alt Text'); 
相關問題