Rimuovere il meta tag "Generator"?


10

Qual è il modo più semplice per rimuovere il meta tag "Generator" in Drupal 8?

<meta name="Generator" content="Drupal 8 (https://www.drupal.org)" />

Questo può essere fatto in poche righe di codice?

Risposte:


15

Per chiunque cerchi (da drupal.org/node/2676164 ):

/**
 * Implements hook_page_attachments_alter().
 */
function HOOK_page_attachments_alter(array &$attachments) {
  foreach ($attachments['#attached']['html_head'] as $key => $attachment) {
    if ($attachment[1] == 'system_meta_generator') {
      unset($attachments['#attached']['html_head'][$key]);
    }
  }
}
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.