Skip to content

Instantly share code, notes, and snippets.

@raaar
Created August 30, 2013 21:54
Show Gist options
  • Save raaar/6394661 to your computer and use it in GitHub Desktop.
Save raaar/6394661 to your computer and use it in GitHub Desktop.
WORDPRESS - Add loop in any page
<?php
query_posts( array( 'post_type' => 'discography', 'recordings' => 'live' ) );
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
<h3><?php the_title(); ?></h3>
<?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