Here is code for change/ overwrite wordpress backend thankyou message. Put this code into your current theme function.php file
// Custom WordPress Footer function remove_footer_admin () { echo '© 2012 - WordPress Channel, Aurélien Denis'; } add_filter('admin_footer_text', 'remove_footer_admin');