Skip to content

Instantly share code, notes, and snippets.

@hslaszlo
Last active August 29, 2015 14:21
Show Gist options
  • Save hslaszlo/cb034efcb1d193c2467b to your computer and use it in GitHub Desktop.
Save hslaszlo/cb034efcb1d193c2467b to your computer and use it in GitHub Desktop.
Get an attachment ID by URL in WordPress
<?php
// source: http://frankiejarrett.com/get-an-attachment-id-by-url-in-wordpress/
$url = 'http://frankiejarrett.com/wp-content/uploads/2013/05/test-image.jpg';
$attachment_id = fjarrett_get_attachment_id_by_url( $url );
$path = ( $attachment_id ) ? get_attached_file( $attachment_id ) : null;
echo $path;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment