Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save carlaizumibamford/832678495aa706dc759767054d088d47 to your computer and use it in GitHub Desktop.
Save carlaizumibamford/832678495aa706dc759767054d088d47 to your computer and use it in GitHub Desktop.
// This will NOT work
$exclude_ids = '1,2,3';
$query = new WP_Query( array( 'post__not_in' => array( $exclude_ids ) ) );
// This WILL work
$exclude_ids = array( 1, 2, 3 );
$query = new WP_Query( array( 'post__not_in' => $exclude_ids ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment