adminfoot

Add the following code to your functions.php file to change the dashboard footer text.

function remove_footer_admin () {
echo "Website by WebtillerDesigns.com";
}

add_filter('admin_footer_text', 'remove_footer_admin');