wordpress通过附件ID获取所属文章ID

在wordpress附件模板中,可以用以下代码来获取附件所属文章ID

$attachment = get_post($attachment_id);
echo $attachment->post_parent;

也可以打印 $attachment

print_r($attachment);