KadenLag
9/1/2015 - 8:35 AM

Target Text in Browser and Return New Value

Target Text in Browser and Return New Value

// Target Text in Browser and Return New Value
function remove_lostpassword_text ( $text ) {
     if ($text == 'Username'){$text = 'hello';}
        return $text;
     }
add_filter( 'gettext', 'remove_lostpassword_text' );