Created
June 20, 2013 02:00
-
-
Save andyknapp/5819768 to your computer and use it in GitHub Desktop.
Change footer in WP admin
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
function ak_remove_footer_admin() { ?> | |
<p>© <?php echo date('Y'); ?> sitename.com</p> | |
<?php | |
} | |
add_filter('admin_footer_text', 'ak_remove_footer_admin'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment