如何从Drupal 7的页面中删除这些标签?
<link rel="shortlink" href=" .... " />
<meta name="Generator" content="Drupal 7 (http://drupal.org)" />
<link rel="canonical" href="...." />
更新:我有template.php的代码,它删除了生成器和规范标记。
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]);
}
}
}
任何人都可以添加一些东西来删除短链接标签吗?
1
一切看起来都不错,但是为什么要拿出规范?这实际上是有帮助的。