Skip to content

Instantly share code, notes, and snippets.

@designbuildtest
Created September 18, 2015 04:56
Show Gist options
  • Select an option

  • Save designbuildtest/06c248c249e72fc4e8f6 to your computer and use it in GitHub Desktop.

Select an option

Save designbuildtest/06c248c249e72fc4e8f6 to your computer and use it in GitHub Desktop.
Remove the "Protected" prefix that WordPress adds to password protected entries.
function dbt_remove_protected_private_in_title( $title ) {
return '%s';
}
add_filter( 'protected_title_format', 'dbt_remove_protected_private_in_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment