Wordpress dashboard default footer to a custom footer

Removing Wordpress default footer in admin dashboard

One can easily see the text on wordpress dashboard footer which spells "Thank you for creating with Wordpress"

In order to make custom footer appear in wordpress dashboard, we can just add a small tweak in functions.php file from the root folder

Just add the below line in the functions.php file

function remove_footer_admin ()
{
echo '<span id="footer-thankyou">Developed by <a href="www.localhost" target="_blank">AMK APPS</a></span>';
}

add_filter('admin_footer_text', 'remove_footer_admin')

The above line replaces the default wordpress footer in the admin dashboard with the custom added text.. that's it

footer,wordpress