Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone explain how I can change the below code to exclude posts that are password protected? I know I can do so with an if statement within the while statement but I want to exclude them from the WP_Query point.

$pq = new WP_Query(array('post_type' => $ptype, 'showposts' => $pshow ));
share|improve this question

1 Answer

up vote 1 down vote accepted

You can make it happen with a post_where filter, just before you execute your query:

function getPosts(){    
    add_filter('posts_where', 'excludePassworded');
    $pq = new WP_Query(array('post_type' => $ptype, 'showposts' => $pshow ));
    // iterate over returned posts and do fancy stuff    
}

function excludePassworded($where) {
    $where .= " AND post_password = '' ";
    return $where;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.