Created
March 23, 2022 07:43
-
-
Save carlaizumibamford/16779fddb94a8ed5c3c400bdca651b8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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