Skip to content

Instantly share code, notes, and snippets.

@edheltzel
Created October 12, 2012 16:23
Show Gist options
  • Save edheltzel/3880080 to your computer and use it in GitHub Desktop.
Save edheltzel/3880080 to your computer and use it in GitHub Desktop.
Customizing Wordpress Admin Footer
// Admin footer modification
function remove_footer_admin ()
{
echo '<span id="footer-thankyou">Developed By:<a href="http://www.yourdomain.com" target="_blank">Your Company Name</a></span>';
}
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