Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nathaningram/3704df84f12365c1b634 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/3704df84f12365c1b634 to your computer and use it in GitHub Desktop.
// Theme My Login - Remove Login Text from Login Area
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