Jul 10, 2011

Custom Admin Footer Text

At the same time you may wish to edit the footer text inside your admin panel. For those who run large blogs and magazines online branding is very important. This bit of code can be added into your functions.php along with the admin panel edits above.
[php]

function remove_footer_admin () {
echo 'Skyje is Awesome. Thank you <a href="http://wordpress.org">WordPress</a> for giving me this filter.';
}
add_filter('admin_footer_text', 'remove_footer_admin');

[/php]

1 comment :

  1. Nice little trick..Just one thing..shouldn't we always do a return from inside a filter than directly echoing?

    ReplyDelete