Skip to content

Instantly share code, notes, and snippets.

@itsHall
Last active October 7, 2021 14:07
Show Gist options
  • Save itsHall/f4054455132cc123b79580d7e9484c1d to your computer and use it in GitHub Desktop.
Save itsHall/f4054455132cc123b79580d7e9484c1d to your computer and use it in GitHub Desktop.
Remove WP Injected Links/Scripts
<?php
//--------------------------------//
// Remove Unnecessary Header Code //
//--------------------------------//
remove_action('wp_head', 'wp_generator');
remove_action('wp_head', 'wlwmanifest_link');
remove_action('wp_head', 'rsd_link');
remove_action('wp_head', 'wp_shortlink_wp_head');
remove_action('wp_head', 'print_emoji_detection_script', 7 );
remove_action('wp_print_styles', 'print_emoji_styles');
remove_action('wp_head', 'wp_oembed_add_discovery_links', 10 );
remove_action('wp_head', 'wp_oembed_add_host_js');
remove_action('rest_api_init', 'wp_oembed_register_route');
remove_filter('oembed_dataparse', 'wp_filter_oembed_result', 10);
@itsHall
Copy link
Author

itsHall commented Sep 30, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment