Skip to content

Instantly share code, notes, and snippets.

@WerdsWords
Last active December 20, 2015 00:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save WerdsWords/6042438 to your computer and use it in GitHub Desktop.
Save WerdsWords/6042438 to your computer and use it in GitHub Desktop.
#12: protected_title_format
<?php
/**
* 'Members Only' title for protected posts
*
* @see get_the_title()
*
* @param string $protected Text prefixed to the title for password-protected posts.
*
* @return string The filtered prefix text.
*/
function wpdocs_members_only_label( $protected ) {
// The %s specifier is replaced with
// the post title after the filter is evaluated.
return __( 'Members Only: %s', 'yourtextdomain' );
}
add_filter( 'protected_title_format', 'wpdocs_members_only_label' );
@WerdsWords
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment