Hide WP version number from the bottom righthand corner of the dashboard. Source: https://www.wpbeginner.com/wp-tutorials/the-right-way-to-remove-wordpress-version-number/
//Hide WordPress Version Number
function remove_wpversion() {
return '';
}
add_filter('the_generator', 'remove_wpversion');