Skip to content

Instantly share code, notes, and snippets.

@webprogramacion
Created December 17, 2016 16:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webprogramacion/d302651b1f3551dc9b0219ae9af6a44c to your computer and use it in GitHub Desktop.
Save webprogramacion/d302651b1f3551dc9b0219ae9af6a44c to your computer and use it in GitHub Desktop.
Cómo conseguir la URL de la imagen principal de un post, seleccionando el tamaño
$thumb_id = get_post_thumbnail_id();
$thumb_url = wp_get_attachment_image_src($thumb_id,'medium', true);
$url_imagen=$thumb_url[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment