Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save carlaizumibamford/16779fddb94a8ed5c3c400bdca651b8d to your computer and use it in GitHub Desktop.

Select an option

Save carlaizumibamford/16779fddb94a8ed5c3c400bdca651b8d to your computer and use it in GitHub Desktop.
Display only password protected posts:
$query = new WP_Query( array( 'has_password' => true ) );
Display only posts without passwords:
$query = new WP_Query( array( 'has_password' => false ) );
Display only posts with and without passwords:
$query = new WP_Query( array( 'has_password' => null ) );
Display posts with a particular password:
$query = new WP_Query( array( 'post_password' => 'zxcvbn' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment