gpt4 book ai didi

WordPress:如何获取附件的日期?

转载 作者:行者123 更新时间:2023-12-04 18:24:14 27 4
gpt4 key购买 nike

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

$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
}

有什么想法吗?感谢您的关注!

最佳答案

附件是一种帖子,归根结底是一种自定义帖子类型。因此,它们与其他帖子类型共享完全相同的表格和特征。

这只是一个问题:

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

如果您需要特定的附件元数据,它们具有专门的功能,例如 wp_get_attachment_metadata正如@brbcoding 在评论中所建议的那样。

关于WordPress:如何获取附件的日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17603955/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com