Last active
April 11, 2017 19:35
-
-
Save jasonbraun/b3ebfef5d9a677b9f085b375d5816a95 to your computer and use it in GitHub Desktop.
Custom Footer Text in Admin Panel
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
<?php | |
//* Modify the admin footer text | |
add_filter( 'admin_footer_text', 'website_name_modify_footer_admin' ); | |
function website_name_modify_footer_admin () { | |
echo '<span id="footer-thankyou">Theme Development by <a href="http://braundesign.co" target="_blank">Braun Design Co</a></span>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment