Admin Footer Modification


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



Copy this code and paste it in your HTML
  1. // Admin footer modification
  2.  
  3. function remove_footer_admin ()
  4. {
  5. echo '<span id="footer-thankyou">Developed by <a href="http://www.designerswebsite.com" target="_blank">Your Name</a></span>';
  6. }
  7. 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.