19 我正在通过图像getMeta。它向我返回附件的ID。现在,我要获取标题,替代文本,描述等。 对于替代文本,效果很好: get_post_meta($logo, '_wp_attachment_image_alt', true); 现在我想获得标题。我发现可以使用来做到这一点$attachment->post_title,但是这里只有ID。如何获得附件ID的标题? images title — 测试 source
31 如果您有附件ID,则可以使用 get_the_title() $attachment_title = get_the_title($attach_id) http://codex.wordpress.org/Function_Reference/get_the_title — 阿努 source