Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created September 26, 2012 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/3788219 to your computer and use it in GitHub Desktop.
Save billerickson/3788219 to your computer and use it in GitHub Desktop.
<?php
$args = array(
'posts_per_page' => -1,
'category_name' => 'complete',
'order' => 'ASC',
'meta_query' => array(
'relation' => 'AND',
array(
'key' => '_crm_portfolio_include',
'compare' => 'NOT EXISTS',
),
array(
'key' => '_crm_portfolio_exclude',
'compare' => 'NOT EXISTS',
)
)
);
$loop = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment