Skip to content

Instantly share code, notes, and snippets.

View masoudnkh's full-sized avatar
🏠
Working from home

Masoud Najjar Khodabakhsh masoudnkh

🏠
Working from home
View GitHub Profile
@masoudnkh
masoudnkh / wp-head-clean.php
Created November 23, 2022 09:43 — forked from blacksaildivision/wp-head-clean.php
Remove all unnecessary stuff from WordPress <head> tag
<?php
/**
* Alter dns-prefetch links in <head>
*/
add_filter('wp_resource_hints', function (array $urls, string $relation): array {
// If the relation is different than dns-prefetch, leave the URLs intact
if ($relation !== 'dns-prefetch') {
return $urls;
}