Skip to content

Instantly share code, notes, and snippets.

@mestrewp
Created May 28, 2012 18:28
Show Gist options
  • Save mestrewp/2820487 to your computer and use it in GitHub Desktop.
Save mestrewp/2820487 to your computer and use it in GitHub Desktop.
Pegando a URL do tumbnail
<?php
/* coloque este código dentro de um loop */
$image_id = get_post_thumbnail_id();
$image_url = wp_get_attachment_image_src($image_id);
$image_url = $image_url[0];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment