Skip to content

Instantly share code, notes, and snippets.

@ville6000
Created May 23, 2016 07:42
Show Gist options
  • Save ville6000/0c472fd200e95ca94065889957b4fec5 to your computer and use it in GitHub Desktop.
Save ville6000/0c472fd200e95ca94065889957b4fec5 to your computer and use it in GitHub Desktop.
Get Attachment ID from Image URL
<?php
function get_attachment_id_from_url( $image_url ) {
global $wpdb;
$attachment = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE guid='%s';", $image_url ) );
return $attachment[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment