假设我知道图像附件ID,我如何获得所附的post permalink(如果有)?
将帖子附加到图像附件
1 个回复
最合适的回答,由SO网友:Rarst 整理而成
Roughly this:
$parent = get_post_field( \'post_parent\', $id);
$link = get_permalink($parent);
结束
假设我知道图像附件ID,我如何获得所附的post permalink(如果有)?
Roughly this:
$parent = get_post_field( \'post_parent\', $id);
$link = get_permalink($parent);