Skip to content

Instantly share code, notes, and snippets.

@iledcom
Last active August 29, 2015 14:26
Show Gist options
  • Save iledcom/ce872214a4aeccf2d31f to your computer and use it in GitHub Desktop.
Save iledcom/ce872214a4aeccf2d31f to your computer and use it in GitHub Desktop.
WordPress get large image
<img src="<?php
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large' );
echo $large_image_url[0]
?>""
alt="<?php the_title(); ?>" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment