Skip to content

Instantly share code, notes, and snippets.

@jessijean
Created October 30, 2013 08:23
Show Gist options
  • Save jessijean/7228918 to your computer and use it in GitHub Desktop.
Save jessijean/7228918 to your computer and use it in GitHub Desktop.
function get_attachment_id_from_src ($image_src) {
global $wpdb;
$query = "SELECT ID FROM {$wpdb->posts} WHERE guid='$image_src'";
$id = $wpdb->get_var($query);
return $id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment