Change dashboard footer text
Change dashboard footer text
Changing the dashboard footer text is pretty easy as well. Update the code below with your custom text on line 2, then include the snippet into your functions.php file.
function remove_footer_admin () {
echo “Your own text”;
}
add_filter(‘admin_footer_text’, ‘remove_footer_admin’);