Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save adamrosloniec/7449ec85245460d65bd3d967f6a02f6d to your computer and use it in GitHub Desktop.
Save adamrosloniec/7449ec85245460d65bd3d967f6a02f6d to your computer and use it in GitHub Desktop.
WordPress - Get all posts with taxonomy
get_posts(array(
'posts_per_page' => -1,
'post_parent' => 0,
'post_type' => 'sanctuary', // post type slug
'tax_query' => array(
array(
'taxonomy' => 'territory', // taxonomy slug
'operator' => 'EXISTS'
),
),
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment