Hide the WordPress version number

functions.php

/**
 * Hide the WordPress version number
 */
function hide_wp_version() {
  return '';
}
add_filter('the_generator', 'hide_wp_version');