Guest User

Untitled

a guest
Dec 11th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. global $post;
  2. $artist_args = array(
  3. 'post_type' => 'page',
  4. 'post_parent' => $post->ID,
  5. 'posts_per_page' => -1,
  6. 'orderby' => 'name',
  7. 'order' => 'ASC',
  8. 'meta_query' => array(
  9. array(
  10. 'key' => 'ReleasedProject',
  11. 'value' => 'true',
  12. 'compare' => '!='
  13. ),
  14. array(
  15. 'key' => 'PermanentArtist',
  16. 'value' => 'true',
  17. 'compare' => '!='
  18. )
  19. )
  20. );
  21. $my_query = new WP_Query($artist_args);
Add Comment
Please, Sign In to add comment