Last active
July 12, 2016 02:32
-
-
Save nathaningram/3704df84f12365c1b634 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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