Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

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 tahirtaous/da3c2e3f7b787619071b to your computer and use it in GitHub Desktop.
Save tahirtaous/da3c2e3f7b787619071b to your computer and use it in GitHub Desktop.
You can use this for client sites as a simple point of reference to contact you as the developer
// Wordpress Custom Admin Footer
// customize admin footer text. Add this to functions.php
// Source http://wordpress.stackexchange.com/posts/6005/revisions
// Modified by Tahir Taous
// customize admin footer text Will be visible in Dashboard
function custom_admin_footer() {
echo 'Created By <a href="//tahirtaous.com/contact">Tahir Taous</a> ';
}
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