Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save antonioanerao/4b89739dde61654dff33f6f0dddfa39a to your computer and use it in GitHub Desktop.
Save antonioanerao/4b89739dde61654dff33f6f0dddfa39a to your computer and use it in GitHub Desktop.
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => '5',
'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1),
);
query_posts($args);
?>
<?php
while ( have_posts() ) : the_post();
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'slide-home' );
?>
<!-- stuff -->
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment