Created
May 19, 2012 17:44
-
-
Save smonteverdi/2731668 to your computer and use it in GitHub Desktop.
WordPress: Custom WordPress Footer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Custom WordPress Footer | |
function remove_footer_admin () { | |
echo '© 2012 - WordPress Channel, Aurélien Denis'; | |
} | |
add_filter('admin_footer_text', 'remove_footer_admin'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment