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
Thanks for good article. Hope to see more soon. I am also a wordpress designer and its really great to know more about it.
Thanks for stopping by. Make sure to subscribe and/or follow us on Twitter so you don’t miss out on anything.
Can you add HTML in the “Add your own text” part?
Yes Ben… you can use HTML there