-
-
Save billerickson/1a06ae3f018baaf039729d13e97c00b1 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
$loop = new WP_Query( array( | |
'posts_per_page' => 10, | |
'tax_query' => array( | |
array( | |
'taxonomy' => 'color', | |
'field' => 'slug', | |
'terms' => array( 'blue' ), | |
) | |
) | |
) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment