Skip to content

Instantly share code, notes, and snippets.

@designhash
Last active July 18, 2017 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save designhash/f8925b0086cec1e46da547b4e27f86dd to your computer and use it in GitHub Desktop.
Save designhash/f8925b0086cec1e46da547b4e27f86dd to your computer and use it in GitHub Desktop.
Show posts from a certain taxonomy
<?php
$loop = new WP_Query(array(
'post_type' => 'ad',
'posts_per_page' => 4,
'tax_query' => array(
// Note: tax_query expects an array of arrays!
array(
'taxonomy' => 'type', // my guess
'field' => 'slug',
'terms' => 'business',
),
),
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment