/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * Customize Admin Footer Text * http://digwp.com/2010/04/wordpress-custom-functions-php-template-part-2/ * **/ function myfunction_custom_admin_footer() { echo '<a href="http://yourdomain.com/">Theme by You</a>'; } add_filter('admin_footer_text', 'myfunction_custom_admin_footer');
URL: http://digwp.com/2010/04/wordpress-custom-functions-php-template-part-2/