How to remove “Protected” from password protected posts in WordPress

Try this:

add_filter('protected_title_format', 'blank'); function blank($title) { return '%s'; }

Copy and paste that code snippet at the top of your functions file… (after <?php )

You may also like