Hello guyz! Today I am showing you how to customize footer text in wordpress dashboard. Add below code in your function.php file
function remove_default_foooter () { echo "Write your custom text here... <a href='#'>Custom link</a>"; } add_filter('admin_footer_text', 'remove_default_foooter');
After adding above code check your dashboard footer text is customized like below screenshot.
I hope this article helpful for you
Thank you 🙂