Skip to content

Instantly share code, notes, and snippets.

@Shininglow
Created August 15, 2017 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shininglow/1816ad278fd3e253f296dab07f0affe1 to your computer and use it in GitHub Desktop.
Save Shininglow/1816ad278fd3e253f296dab07f0affe1 to your computer and use it in GitHub Desktop.
/**
* Removes or edits the 'Protected:' part from posts titles
*/
add_filter( 'protected_title_format', 'remove_protected_text' );
function remove_protected_text() {
return __('Custom Text: %s');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment