How to Customize the WordPress Dashboard Footer Text

July 5, 2010 by Efraín | 4 Comments

This is is a very useful tip for those who build WordPress based websites for customers. This code will replace the “Thank you for creating with WordPress” footer text with your own text. All you have to do is add the code bellow to the functions.php file located in your theme folder.

function remove_footer_admin () {
    echo "Your own text";
}

add_filter('admin_footer_text', 'remove_footer_admin');

Credits: WPRecipes

4 Responses

  1. Thanks for good article. Hope to see more soon. I am also a wordpress designer and its really great to know more about it.

  2. Ben says:

    Can you add HTML in the “Add your own text” part?

Leave a Reply