How do I link an image to the post it is attached to?
After some additional searching I was able to come across a function to generate the attachment ID here: http://pippinsplugins.com/retrieve-attachment-id-from-image-url/: // retrieves the attachment ID from the file URL function pippin_get_image_id($image_url) { global $wpdb; $prefix = $wpdb->prefix; $attachment = $wpdb->get_col($wpdb->prepare(“SELECT ID FROM ” . $prefix . “posts” . ” WHERE guid='” . $image_url . “‘;”)); return … Read more