Skip to content

Instantly share code, notes, and snippets.

@gustavoguichard
Created October 24, 2012 19:17
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 gustavoguichard/3948216 to your computer and use it in GitHub Desktop.
Save gustavoguichard/3948216 to your computer and use it in GitHub Desktop.
Wordpress query
<?php $my_query = new WP_Query('showposts=3&tag=tag'); ?>
<?php if($my_query->have_posts()) : ?><?php while($my_query->have_posts()) : $my_query->the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; wp_reset_query(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment