Skip to content

Instantly share code, notes, and snippets.

@dvdopi
Last active April 17, 2020 08:42
Show Gist options
  • Save dvdopi/241c33b0fab46f43dd8a525cb110aa2f to your computer and use it in GitHub Desktop.
Save dvdopi/241c33b0fab46f43dd8a525cb110aa2f to your computer and use it in GitHub Desktop.
wordpress- query by custom taxomimy
$member = new WP_Query(
array(
'post_type' => 'post',
'orderby' => 'menu_order',
'order' => 'DESC',
'post_status' => 'publish',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'taxonomy',
'field' => 'slug',
'terms' => 'taxonomy-slug'
)
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment