Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有一些示例说明如何在 wordpress 中以编程方式添加带有特色图片的帖子,但我也需要添加带有特色图片和 ALT 文本的帖子。我怎么能做这样的事情?
谢谢你。
如果您查看wp_get_attachment_image函数的源代码,您可以看到 alt 文本是如何被获取的:
wp_get_attachment_image
'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');