Skip to content

Instantly share code, notes, and snippets.

@selenastrain
Created August 6, 2012 16:43
Show Gist options
  • Select an option

  • Save selenastrain/3276439 to your computer and use it in GitHub Desktop.

Select an option

Save selenastrain/3276439 to your computer and use it in GitHub Desktop.
Custom taxonomy query example
<?php
$args = array(
'tax_query' => array(
array(
'taxonomy' => 'people',
'field' => 'slug',
'terms' => 'bob'
)
),
'order' => 'ASC',
'orderby' => 'title'
);
$query = new WP_Query( $args );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment