Skip to content

Instantly share code, notes, and snippets.

@richardegil
Created October 18, 2012 15:25
Show Gist options
  • Save richardegil/3912552 to your computer and use it in GitHub Desktop.
Save richardegil/3912552 to your computer and use it in GitHub Desktop.
For Hische
$args = array (
'post_type' => 'studentawards',
'tax_query' => array(
array(
'taxonomy' => 'year',
'field' => 'slug',
'terms' => '1994'
)
)
);
$the_query = new WP_Query( $args );
while ( $the_query->have_posts() ) : $the_query->the_post();
// do some stuff
endwhile;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment