Change the Dashboard Footer Text in WordPress


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



Copy this code and paste it in your HTML
  1. function remove_footer_admin () {
  2. echo "Your own text";
  3. }
  4.  
  5. add_filter('admin_footer_text', 'remove_footer_admin');

Report this snippet


Comments


You need to login to view comments.