Free Wordpress Blog Setup

Change the Footer in Your WordPress Admin Panel

By Editorial Staff in Themes
Change the Footer in Your WordPress Admin Panel

There are times when you want others to know that you designed the specific WordPress theme. So you would put a credential link in the WordPress footer. But if you want to take it even further, you can modify the WordPress Admin panel footer. This simple hack is an extra perk that theme designers can add for their clients or in their free themes (like many plugin authors do).

To accomplish this trick, simply open your theme’s functions.php file and paste the following code:

function remove_footer_admin () {
echo 'Fueled by <a href="http://www.wordpress.org" target="_blank">WordPress</a> | Designed by <a href="http://www.uzzz.net" target="_blank">Uzzz Productions</a> | WordPress Tutorials: <a href="http://www.wpbeginner.com" target="_blank">WPBeginner</a></p>';
}

add_filter('admin_footer_text', 'remove_footer_admin');

It is assumed that you know to paste these codes within the php tags. We always leave credit for WordPress, no matter how customize our admin panel is it wasn’t possible without WordPress. You should follow the same practice to increase awareness about WordPress.

Here is how the end result would look like:

Modify WordPress Admin Panel Footer

Source: WPRecipes

What Next?

Digg it
Save This Page
Subscribe to WPBeginner
Stumble it
Free Wordpress Blog Setup

Comments

4 Responses to “Change the Footer in Your WordPress Admin Panel”
  1. Nina says:

    Great tutorial, will use ;)

  2. Konstantin says:

    Unfortunately you neglected to mention to hook it to the “admin_footer_text” filter. This is what’s missing:

    add_filter('admin_footer_text', 'remove_footer_admin');

  3. Ash Blue says:

    This rocks my socks, I love being able to edit the WP admin screen. Will there be tutorials here soon for WP 3.0?

Share Your Opinions

Tell us what you're thinking...
and if you want a pic to show with your comment, then get gravatar!

Please make sure that you have read our Comment Policy.

Due to high volume of request from our readers, we are adding this feature that allows you to stay updated with this post's comments without having to participate in the discussion even though we would love your input as always. Don't worry we hate SPAM just as much as you do, so you will never receive any SPAM messages from our site and that's our promise to you.

Subscribe without commenting

Close Bar