I have added images to a post and each such image has an attachment post in Wordpress. On the attachment post I have previous/next links to navigate to previous/next attachments. For this, the function I used is previous_image_link() & next_image_link(). But Wordpress dont seem to offer a way to get the ID of the previous and next posts. I tried using get_previous_post(), get_next_post() but they return null (even after setting a global $post).
Bottom line: Is there a way to get the post IDs of previous and next attachment pages?