| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/harmoniegolfpark.com/wp-content/plugins/wp-rocket1/inc/front/ |
Upload File : |
<?php
defined( 'ABSPATH' ) || exit;
/**
* Adds domain names to the list of DNS Prefetch printed by wp_resource_hints
*
* @since 2.8.9
* @author Remy Perona
*
* @param Array $hints URLs to print for resource hints.
* @param String $relation_type The relation type the URL are printed for.
* @return Array URLs to print
*/
function rocket_dns_prefetch( $hints, $relation_type ) {
// Don't add prefetch for uncached pages.
if ( defined( 'DONOTROCKETOPTIMIZE' ) && DONOTROCKETOPTIMIZE ) {
return $hints;
}
$domains = rocket_get_dns_prefetch_domains();
if ( (bool) $domains ) {
foreach ( $domains as $domain ) {
if ( 'dns-prefetch' === $relation_type ) {
$hints[] = $domain;
}
}
}
return $hints;
}
add_filter( 'wp_resource_hints', 'rocket_dns_prefetch', 10, 2 );