/* Removing WordPress version and thank you message from admin dashboard bottom area /.. */
function wpse_edit_footer() {
add_filter('admin_footer_text', 'wpse_edit_text', 11);
}
function wpse_edit_text($content) {
return "YOUR CUSTOM TEXT HERE!";
}
add_action('admin_init', 'wpse_edit_footer');
/* ../ Removing WordPress version and thank you message from admin dashboard bottom area */