如何获取附件的日期



我不知道如何获取附件的日期。我获得的附件如下:

$attachments = get_children(array('post_parent'=>$post->ID, 'post_type'=>'attachment', 'post_mime_type'=>'image'));
foreach ( $attachments as $attachment ) {
    //I want to get the date of the attachment
}

有什么想法吗?谢谢你的光临!

Attachment是一种帖子类型,是一天结束时的自定义帖子类型。因此,它们与其他帖子类型共享完全相同的表和特征。

这只是一个问题:

foreach ( $attachments as $attachment ) {
    echo $attachment->post_title . ' - ' . $attachment->post_date;
}

如果您需要特定的附件元数据,它们有专门的功能,如@brbcoding在注释中建议的wp_get_attachment_metadata

相关内容

  • 没有找到相关文章

最新更新