Get post id by attachment id? 时间:2014-05-17 作者:Brotheryura 我有附件id,但找不到通过此附件id获取帖子id的方法。我可以循环所有帖子并找到它,但可能存在获取它的简单方法。有人知道类似的函数吗? 1 个回复 最合适的回答,由SO网友:Milo 整理而成 get_post_ancestors 可以为您提供附件关联的对象的ID:$attachment_id = 42; $parent = get_post_ancestors( $attachment_id ); echo $parent[0]; // $parent will be an array 结束 文章导航