| Server IP : 87.229.120.60 / Your IP : 216.73.216.86 Web Server : Apache System : Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64 User : server ( 1002) PHP Version : 8.3.20 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/faktorteam/www/wp-content/plugins/wp-rocket/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 );