「ジェネレータ」メタタグを削除しますか?


10

Drupal 8で「Generator」メタタグを削除する最も簡単な方法は何ですか?

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

これは数行のコードで実行できますか?

回答:


15

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]);
    }
  }
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.