Change footer-text in WP Admin

<?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/

Processing your request, Please wait....

No Responses to “Change footer-text in WP Admin”

Comments (Your Comments)

Leave a Reply

You must be logged in to post a comment.