To remove the WordPress version number simply add the following code in your functions.php file or custom plugin:
/** * Remove WordPress version number*/
function custom_remove_version() {
return '';
}
add_filter('the_generator', 'custom_remove_version');