[How To] Remove DNS-Prefetch Links Without Plugin
WPAssist / WordPress Hacks - April 8, 2020Removing DNS-Prefetch from wp_head hook is a pretty easy task. Just add the following code snippet to your functions to remove DNS-Prefetch links on your header; // Remove dns-prefetch Link from WordPress Head (Frontend) remove_action( ‘wp_head’, ‘wp_resource_hints’, 2 ); What is DNS Prefetch? DNS prefetching […]