Created
May 16, 2015 06:57
-
-
Save valeriu/0f42ed0a82a29ac52496 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*------------------------------------------------------------ | |
* Get Attachment ID from image src | |
* Author: http://stylishwp.com/ | |
============================================================*/ | |
if ( ! function_exists( 'swp_get_attachment_id_from_src' ) ) : | |
function swp_get_attachment_id_from_src ( $image_src ) { | |
global $wpdb; | |
$id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid = %s", $image_src) ); | |
return $id; | |
} | |
endif; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment