Skip to content

Instantly share code, notes, and snippets.

Created August 23, 2015 01:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/7cbf06d9bd762936cef6 to your computer and use it in GitHub Desktop.
Save anonymous/7cbf06d9bd762936cef6 to your computer and use it in GitHub Desktop.
<?php $args = array(
'posts_per_page' => 1
);
?>
<?php $the_query = new WP_Query( $args ); ?>
<?php if ( $the_query->have_posts() ) : ?>
<!-- pagination here -->
<!-- the loop -->
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php the_post_thumbnail();?>
<h2><?php the_title(); ?></h2>
<?php endwhile; ?>
<!-- end of the loop -->
<!-- pagination here -->
<?php wp_reset_postdata(); ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment