DNS Prefecth

PHOTO EMBED

Thu May 25 2023 14:49:43 GMT+0000 (Coordinated Universal Time)

Saved by @dawidofski

if( ! function_exists( 'wphelp_dns_prefetch' ) ) :
 
    function wphelp_dns_prefetch(){
         
        if ( is_singular() ) { 
                  echo '<link rel="prefetch" href="' .esc_url( home_url() ) . '">';               
                   echo '<link rel="prerender" href="' .esc_url( home_url() ) . '">';             
        }
 
    }
 
endif;
 
add_action('wp_head', 'wphelp_dns_prefetch');
content_copyCOPY

https://wpmunk.com/wordpress-performance-optimization-without-plugin/