function wpc_exclude_protected_posts($query) { | |
if (! is_admin() && $query->is_main_query()) { | |
$query->set('has_password', false); | |
} | |
} | |
add_action('pre_get_posts', 'wpc_exclude_protected_posts'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment