Làm cách nào tôi có thể xóa các thẻ này khỏi các trang của mình trong Drupal 7?
<link rel="shortlink" href=" .... " />
<meta name="Generator" content="Drupal 7 (http://drupal.org)" />
<link rel="canonical" href="...." />
Cập nhật : Tôi có mã cho template.php, loại bỏ các trình tạo và thẻ chuẩn.
function program_html_head_alter(&$head_elements) {
unset($head_elements['system_meta_generator']);
foreach ($head_elements as $key => $element) {
if (isset($element['#attributes']['rel']) && $element['#attributes']['rel'] == 'canonical') {
unset($head_elements[$key]);
}
}
}
Bất cứ ai cũng có thể thêm một cái gì đó để loại bỏ các thẻ liên kết ngắn?