Skip to content

Instantly share code, notes, and snippets.

@roose
Created February 28, 2012 15:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roose/1933109 to your computer and use it in GitHub Desktop.
Save roose/1933109 to your computer and use it in GitHub Desktop.
Change "Thank you for creating with WordPress." in admin footer to custom text
<?php
function modify_footer_admin () {
echo 'Developed by <a href="http://roose.kz">roose</a>.';
}
add_filter('admin_footer_text', 'modify_footer_admin');
?>
@pm99
Copy link

pm99 commented Sep 20, 2019

thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment