Created
March 15, 2017 14:06
-
-
Save marcosnakamine/356ed2ff8d5e54ee1d73b3431cd13076 to your computer and use it in GitHub Desktop.
WordPress - Get all custom posts of custom taxonomy
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
| <?php | |
| $query = new WP_Query(array( | |
| 'post_type' => 'custom_post', | |
| 'tax_query' => array( | |
| array( | |
| 'taxonomy' => 'custom_taxonomy', | |
| 'field' => 'slug', | |
| 'terms' => 'taxonomy-slug' | |
| ) | |
| ) | |
| )); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment