Skip to content

Instantly share code, notes, and snippets.

@spigists
Created June 10, 2013 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spigists/5752534 to your computer and use it in GitHub Desktop.
Save spigists/5752534 to your computer and use it in GitHub Desktop.
Replace the default WordPress dashboard footer text and link with a custom message
/**
* Replace the default WordPress dashboard footer text and link with a custom message
*/
function footer_admin () {
echo 'Website designed and developed by <a href="http://go-spi.com/" target="_blank">Schmitt ProfiTools, Inc.</a>';
}
add_filter('admin_footer_text', 'footer_admin');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment