Hide password protected posts in admin
You can use the has_password parameter of WP_Query. Here’s an example how you can hide it, for non administrators, on the edit.php screen for the post post type: /** * Hide password protected posts, for non-admins, in the case of ‘edit-post’ screen id * * @link http://wordpress.stackexchange.com/a/200426/26350 */ add_action( ‘pre_get_posts’, function( \WP_Query $q ) { … Read more