
When building a site for a client, it can be useful to be able to modify the dashboard footer text. This recipe is going to show you how you can easily do it using a hook.

When building a site for a client, it can be useful to be able to modify the dashboard footer text. This recipe is going to show you how you can easily do it using a hook.
Paste the following on your functions.php, save the file, and you're done. Couldn't been easier
function remove_footer_admin () {
echo "Your own text";
}
add_filter('admin_footer_text', 'remove_footer_admin');
22 Responses
Cool and Easy, but the function name seems kind a strange
Maybe “custom_footer_text” would be the right name
Thanks for this tweak bro.
Very usefull for those of us who build wordpress based websites for customers. thanks a lot for sharing!
Note that returning the custom text would a cleaner way to do it as the value could be filtered multiple times.
function remove_footer_admin ($text) {
$ex = explode(‘|’, $text);
return $ex[0].’ | No more additional links.’;
}
add_filter(‘admin_footer_text’, ‘remove_footer_admin’);
That’s fantastic!
Getting an error at add_filter…?
Nevermind, I was using the file in includes folder! It needs to be the theme’s one
Even easier is footer.php (in your theme) edit and make changes as we want
Very nice tip. And very useful for me since i am building my own theme at the moment
Thank you for sharing!
Again, thanks. You can really customize the Wordpress dashboard, especially if one were to go through the posts you’ve made. It would be nice if all these little hacks could be put into a plugin… maybe “WP-Custom Dashboard” that would be cool
Cool tip! Now I just need to find an actual use for this
it works for me..! thanks!
Nice and easy and very useful.
Thanks!
shorter:
add_filter(‘admin_footer_text’,create_function(‘$a’,”return ‘Your own text’;”));
Nice tweak !
Made the trick!
Trackbacks: