Skip to content

Instantly share code, notes, and snippets.

@db-roberto
Last active August 29, 2015 13:55
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 db-roberto/8710691 to your computer and use it in GitHub Desktop.
Save db-roberto/8710691 to your computer and use it in GitHub Desktop.
<?php
/* HOW TO WRITE A TAX QUERY
* ******************************************************/
$query_args = array(
'tax_query' => array(
array(
'taxonomy' => 'custom-taxonomy', // name of the taxonomy
'field' => 'slug', // what field is being queried (can be slug or id)
'terms' => 'hostingadvice-com' // the slug to match
),
),
);
$query = new WP_Query( $query_args );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment