Add the following code to your WordPress theme’s function.php file, or a functionality plugin to replace the WordPress Dashboard footer message with your own.
Replace “Your own text” with your message.
function remove_footer_admin () {
echo "Your own text";
}
add_filter('admin_footer_text', 'remove_footer_admin');
Share Your Two Cents