Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

Assuming I know the image attachment ID, how can I get the post permalink to which is attached (if any) ?

share|improve this question

1 Answer

up vote 3 down vote accepted

Roughly this:

$parent = get_post_field( 'post_parent', $id);
$link = get_permalink($parent);
share|improve this answer
thanks Rarst :) – One Trick Pony Jan 29 '11 at 15:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.