Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Robzelf/ed8709a5e0d8a7a4fd6ac7ca190b1088 to your computer and use it in GitHub Desktop.
Save Robzelf/ed8709a5e0d8a7a4fd6ac7ca190b1088 to your computer and use it in GitHub Desktop.
Wordpress: Filter by custom taxonomy & custom field
$_args = array (
'post_type' => %post_type%,
'tax_query' => array (
array ( 'taxonomy' => %tax_name%, 'field'=> 'term_id', 'terms' => %term_id% ),
),
'meta_query' => array (
array ( 'key' => %custom_field%, 'value'=> %value%, 'compare' => '=' ),
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment