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