Skip to content

Instantly share code, notes, and snippets.

@micahwave
Created May 7, 2012 21:19
Show Gist options
  • Select an option

  • Save micahwave/2630535 to your computer and use it in GitHub Desktop.

Select an option

Save micahwave/2630535 to your computer and use it in GitHub Desktop.
wp_query derp
// backend, gather the data
if( have_posts() ) {
get_template_part( 'derp' );
}
wp_reset_query();
// front-end, derp.php
<?php while( have_posts() ) : the_post(); ?>
<?php the_title(); ?>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment