Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created June 8, 2015 15:56
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 nathaningram/234d1063553cafd9be7a to your computer and use it in GitHub Desktop.
Save nathaningram/234d1063553cafd9be7a to your computer and use it in GitHub Desktop.
Remove Login from Theme My Login Login
// Change the Theme My Login Login Template Header
function tml_title_filter( $title, $action ) {
if ( 'login' == $action ) return '';
return $title;
}
add_filter( 'tml_title', 'tml_title_filter', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment