WordPress获取图库图片标题 时间:2012-11-20 作者:michele 我正在检索以下图片帖子:$img = wp_get_attachment_image_src( $attachment_id, \'full\' ); 如何检索图像标题?谢谢 1 个回复 最合适的回答,由SO网友:Steve 整理而成 在WordPress中,附件存储为帖子,因此您可以使用大多数特定于帖子的WordPress调用和函数来读取/写入与附件相关的数据。这也适用于附件的post元数据。因此,在这种情况下,由于您有post ID(与$attachment\\u ID相同),您只需使用get_the_title() 功能:$sImageTitle = get_the_title( $attachment_id ); 这将返回给定帖子ID的帖子标题字符串。查看更多信息。在codex docshere. 结束 文章导航