Skip to content

Instantly share code, notes, and snippets.

@dompascal
Created November 23, 2013 11:06
Show Gist options
  • Save dompascal/7613317 to your computer and use it in GitHub Desktop.
Save dompascal/7613317 to your computer and use it in GitHub Desktop.
WP - Query of specific page/post
<?php $my_query = new WP_Query('category_name=sctv&showposts=1'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment