Last active
April 17, 2020 08:42
-
-
Save dvdopi/241c33b0fab46f43dd8a525cb110aa2f to your computer and use it in GitHub Desktop.
wordpress- query by custom taxomimy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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