Wordpress: Customize Admin Footer Text


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



Copy this code and paste it in your HTML
  1. /**
  2.  * Customize Admin Footer Text
  3.  * http://digwp.com/2010/04/wordpress-custom-functions-php-template-part-2/
  4.  *
  5.  **/
  6. function myfunction_custom_admin_footer() {
  7. echo '<a href="http://yourdomain.com/">Theme by You</a>';
  8. }
  9. add_filter('admin_footer_text', 'myfunction_custom_admin_footer');

URL: http://digwp.com/2010/04/wordpress-custom-functions-php-template-part-2/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.