A short PHP snippet for removing default bloat from WordPress.

add_action('wp_enqueue_scripts', function() {
  remove_action('wp_head', 'wp_resource_hints', 2);
  remove_action('wp_head', 'print_emoji_detection_script', 7);
  remove_action('wp_print_styles', 'print_emoji_styles'); 
  remove_action('wp_head', 'rest_output_link_wp_head');
  remove_action('wp_head', 'rsd_link');
  remove_action('wp_head', 'wlwmanifest_link');
  remove_action('wp_head', 'wp_generator');
  wp_deregister_script('wp-embed');
});