Skip to content

Instantly share code, notes, and snippets.

@kostiantyn-petlia
Created August 6, 2015 21:54
Show Gist options
  • Save kostiantyn-petlia/908915daa6f382a75751 to your computer and use it in GitHub Desktop.
Save kostiantyn-petlia/908915daa6f382a75751 to your computer and use it in GitHub Desktop.
//For the latest blog post:
<?php query_posts('showposts=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_post_thumbnail(); ?>
<?php endwhile; ?>
//For a thumbnail from a particular page (in this case id =7 ):
<?php query_posts('page_id=7'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_post_thumbnail(); ?>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment