Customizing Wordpress Admin Footer


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

Add to bottom of your theme's functions.php file


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.yourdomain.com" target="_blank">Your Company Name</a></span>';
  6. }
  7. add_filter('admin_footer_text', 'remove_footer_admin');

URL: http://rnydm.us/r5DgdP

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.