Created
October 18, 2012 15:25
-
-
Save richardegil/3912552 to your computer and use it in GitHub Desktop.
For Hische
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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