Skip to content

Instantly share code, notes, and snippets.

@Hexodus
Created August 2, 2017 14:48
Show Gist options
  • Save Hexodus/e7703df365bec69097179e784b8e8225 to your computer and use it in GitHub Desktop.
Save Hexodus/e7703df365bec69097179e784b8e8225 to your computer and use it in GitHub Desktop.
Wordpress. Method to get the site features image instead of the loop ones. Useful for blogs where usually the_post_thumbnail() would call the first loop image thumbnail.
<?php
$img = wp_get_attachment_image_src(get_post_thumbnail_id(get_option('page_for_posts')),'full');
$featured_image = $img[0];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment