Skip to content

Instantly share code, notes, and snippets.

@ville6000
Created May 23, 2016 07:51
Show Gist options
  • Save ville6000/666bf72a12bdf80400e64020c43b1490 to your computer and use it in GitHub Desktop.
Save ville6000/666bf72a12bdf80400e64020c43b1490 to your computer and use it in GitHub Desktop.
Get thumbnail with attachment ID
<?php
$image_id = get_attachment_id_from_url( $image_url );
$thumb = wp_get_attachment_image_src( $image_id, 'thumbnail' );
echo $thumb[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment