Skip to content

Instantly share code, notes, and snippets.

@raphaelchaib
Created February 5, 2016 07:33
Show Gist options
  • Select an option

  • Save raphaelchaib/d0cebf7fb5669150cd60 to your computer and use it in GitHub Desktop.

Select an option

Save raphaelchaib/d0cebf7fb5669150cd60 to your computer and use it in GitHub Desktop.
WordPress: Remove "Protected/Protegido" from post title
<?php
add_filter('protected_title_format', 'blank');
function blank($title) {
return '%s';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment