Return to Snippet

Revision: 47337
at June 6, 2011 00:47 by alp


Initial Code
/**
 * 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');

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

Initial Description


Initial Title
Wordpress: Customize Admin Footer Text

Initial Tags
wordpress

Initial Language
PHP