Skip to content

Instantly share code, notes, and snippets.

@andrewlaskey
Created September 30, 2013 18:37
Show Gist options
  • Save andrewlaskey/6768138 to your computer and use it in GitHub Desktop.
Save andrewlaskey/6768138 to your computer and use it in GitHub Desktop.
Get featured image url in Wordpress
<?php
$imageObj = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full' );
$imageUrl = $imageObj[0];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment