Skip to content

Instantly share code, notes, and snippets.

@juarezpaf
Created July 8, 2009 18:50
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 juarezpaf/143079 to your computer and use it in GitHub Desktop.
Save juarezpaf/143079 to your computer and use it in GitHub Desktop.
<?php
$myPosts = new WP_Query();
$myPosts->query('showposts=4&category_name=products&oder=asc');
while ($myPosts->have_posts()) : $myPosts->the_post();
?>
<div class="productItem">
<?php $myPosts->images('1', '219', '163', 'alignleft', false); ?>
<h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment