To add or remove text from the footer section use the filter “admin_footer_text”
function remove_footer_text()
{
echo ‘New footer’; // or simply leave blank
// Here we can add class or html tags
}
add_filter(‘admin_footer_text’, ‘remove_footer_text’);