I have a custom post type that supports password protected entries. In a custom loop using a new WP_Query object, I want to exclude those password protected posts from the results. What arguments do I need set in order to do this? I am using the latest trunk version of WordPress 3.2.1.
|
I really like Kevin's approach, but I adjusted it slightly:
|
|||
|
|
|
Did you take a look at the post_status argument of WP_Query? "Protected" seems like a good candidate to exclude. Edit: Okay, it seems like you'll have to modify the where clause to achieve what you want:
|
|||||||||||
|
|
After a bit of playing about, I found the posts_where filter a bit too intrusive for what I wanted to do, so I came up with an alternative. As part of the 'save_post' action that I attached for my custom post type, I added the following logic;
What this does is hold an array of post id's in the options table where the post is protected by a password. Then in a custom query I simply passed this array as part of the
This way I could exclude the protected posts from an archive page but still allow a user to land on the password protected page to enter the password. |
|||
|