Skip to content

Instantly share code, notes, and snippets.

@habibmac
Created June 6, 2012 16:48
Show Gist options
  • Save habibmac/2883213 to your computer and use it in GitHub Desktop.
Save habibmac/2883213 to your computer and use it in GitHub Desktop.
WP: Custom admin footer
// customize admin footer text
function custom_admin_footer() {
echo 'add your custom footer text and html here';
}
add_filter('admin_footer_text', 'custom_admin_footer');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment