Skip to content

Instantly share code, notes, and snippets.

View pm99's full-sized avatar

lee chiang pm99

  • Canada
View GitHub Profile
@roose
roose / gist:1933109
Created February 28, 2012 15:23
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');
?>