<?php
function remove_footer_admin () {
echo 'My footer text. Thank you <a href="http://wordpress.org">Wordpress</a> for giving me this filter.';
}
add_filter('admin_footer_text', 'remove_footer_admin');
?>
Source : http://wp-snippets.com/change-footer-text-in-wp-admin/
Leave a Reply