Finally stopped working on WordPress 4.7 : [
]]>Where is the option to change “howdy???”
https://www.ads-software.com/extend/plugins/dirtysuds-kill-howdy/
]]>Is it possible to also add an option to change the URL of ‘Howdy’ message?
Right now it gets you your profile page, but I want it to point to another page. That would be very helpful.
https://www.ads-software.com/extend/plugins/dirtysuds-kill-howdy/
]]>function dirtysuds_howdy( $links ) {
$greeting = “Hey,
A-yo,
Holla!
Sup?
What’s clickin?
What’s crackin’?
What’s poppin?
Hello, Your Majesty,”;
$greeting = explode(“\n”, $greeting);
$greeting = wptexturize( $greeting[ mt_rand(0, count($greeting) – 1) ] );
$links[5] = str_replace(‘Howdy,’,$greeting,$links[5]);
return $links;
}
add_filter(‘admin_user_info_links’, ‘dirtysuds_howdy’);
https://www.ads-software.com/extend/plugins/dirtysuds-kill-howdy/
]]>