Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mircobabini/167a11c8cdb4e925ec69e6c759301aca to your computer and use it in GitHub Desktop.
Save mircobabini/167a11c8cdb4e925ec69e6c759301aca to your computer and use it in GitHub Desktop.
<?php
add_filter( 'iubenda_initial_output', function ( $final_output ) {
// https://www.tagmanageritalia.it/guida-gdpr-disabilitare-cookie-youtube-e-google-maps/
$final_output = str_replace( 'maps.google.com', 'maps.googleapis.com', $final_output );
$final_output = str_replace( 'www.google.com/maps', 'maps.googleapis.com/maps', $final_output );
return $final_output;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment