Change footer text in WordPress admin panel


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function remove_footer_admin () {
  2. echo 'My Custom footer text.';
  3. }
  4. add_filter('admin_footer_text', 'remove_footer_admin');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.