
Basically, Any web developer (including myself) takes a step further when it comes to branding. With the following code, You can change the old and boring wordpress’ footer text and replace it your own message.
Just go to functions.php of your theme and add the following code.
[php]
function my_admin_footer () {
print "Your Company Name. <a href=’#’>Visit Website</a>";
}
add_filter(‘admin_footer_text’, ‘my_admin_footer’);
[/php]
Happy Experimenting!
[alert type=”warning” close=”true”]You’ll have to edit your theme’s functions file. If you dont know how to do it, Check out WordPress’ Guide on functions.php before proceeding.[/alert]