Skip to content

Instantly share code, notes, and snippets.

@andyknapp
Created June 20, 2013 02:00
Show Gist options
  • Save andyknapp/5819768 to your computer and use it in GitHub Desktop.
Save andyknapp/5819768 to your computer and use it in GitHub Desktop.
Change footer in WP admin
function ak_remove_footer_admin() { ?>
<p>&copy; <?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