Skip to content

Instantly share code, notes, and snippets.

@jpmarchand
Last active November 30, 2015 15:55
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 jpmarchand/3460175e571da76387d5 to your computer and use it in GitHub Desktop.
Save jpmarchand/3460175e571da76387d5 to your computer and use it in GitHub Desktop.
Remove the word "Private" from private post titles. Source: https://codex.wordpress.org/Plugin_API/Filter_Reference/private_title_format
<?php
//* Remove the word "Private:" from private post titles
function prefix_remove_private_from_post_titles($title) {
return '%s';
}
add_filter('private_title_format', 'prefix_remove_private_from_post_titles');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment