I tried following this posts tutorial HOW TO CHANGE THE WORDPRESS “HOWDY” MESSAGE TO A CUSTOM WELCOME
I created a functions.php file inserted the code and saved. Once I did that I got a strange message on my page and the Howdy message remained. I have since deleted my functions.php file in the hope of removing the text but it is not working.
Fixed The functions file was not properly deleted.
This thread may be archived or sent to the wasteland.
I created a functions.php file inserted the code and saved. Once I did that I got a strange message on my page and the Howdy message remained. I have since deleted my functions.php file in the hope of removing the text but it is not working.
Code:
add_filter('gettext', 'change_howdy', 10, 3);
function change_howdy($translated, $text, $domain) {
if (!is_admin() || 'default' != $domain)
return $translated;
if (false !== strpos($translated, 'Howdy'))
return str_replace('Howdy', 'Welcome', $translated);
return $translated;
}
Fixed The functions file was not properly deleted.
This thread may be archived or sent to the wasteland.
Attachments
Last edited: