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.

结束

相关推荐

Images in wp_mail not showing

我创建了一个发送电子邮件的插件:$subject = \'New comment - \'.$post_title; ob_start(); include(SUBSCRIBE_USER_BASE_DIR . \'/email/message.php\'); $message = ob_get_clean(); foreach($user_emails as $user_email){ $to = $user