Code-Snippets-Functions/Execute a function on a child site/WordPress/disable-google-floc.txt

6 lines
162 B
Text

function disable_floc($headers) {
$headers['Permissions-Policy'] = 'interest-cohort=()';
return $headers;
}
add_filter('wp_headers', 'disable_floc');