Skip to content

Instantly share code, notes, and snippets.

@chasereeves
Created September 20, 2012 19:42
Show Gist options
  • Save chasereeves/3757911 to your computer and use it in GitHub Desktop.
Save chasereeves/3757911 to your computer and use it in GitHub Desktop.
Wordpress WP_Query example
<ul class="none">
<?php $lessons_query = new WP_Query( array('post_type' => 'lesson', 'cat' => 21,'orderby' => date, 'order' => DESC, 'posts_per_page' => 5));
while ( $lessons_query->have_posts() ) : $lessons_query->the_post(); ?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; wp_reset_postdata(); ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment