Last active
August 29, 2015 14:13
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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