Skip to content

Instantly share code, notes, and snippets.

@ericmann
Created April 26, 2013 21:14
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 ericmann/5470499 to your computer and use it in GitHub Desktop.
Save ericmann/5470499 to your computer and use it in GitHub Desktop.
<?php
$post_args = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 10,
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'has_been_twittered',
'value' => 'no',
'compare' => '='
),
array(
'key' => 'has_been_twittered',
'compare' => 'NOT EXISTS'
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment