Questions tagged «meta-tags»


3
如何删除某些元标记?
如何从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]); } } } 任何人都可以添加一些东西来删除短链接标签吗?
18 7  meta-tags 

4
如何强制规范URL使用http?
在我们的页面上,我们使用Metatag模块显示规范的meta标签。在配置中,我们使用[current-page:url:absolute]令牌。这可以很好地工作,但是问题是,无论页面是通过HTTP还是HTTPS访问,该协议都在规范的URL中使用。 出于SEO的目的,我们希望规范的URL相同,并且对两种协议都使用HTTP。 我们怎样才能做到这一点?
10 uri  meta-tags 

1
删除“ Generator”元标记?
在Drupal 8中删除“ Generator”元标记的最简单方法是什么? <meta name="Generator" content="Drupal 8 (https://www.drupal.org)" /> 可以仅用几行代码来完成吗?
10 8  meta-tags 

1
尝试在Drupal 8(测试版2)中添加html头标记
使用Drupal 8.0β2,drupal_add_html_head() 已被弃用,赞成的#attached。因此,旧方法是: function MYTHEME_page_build(&$page) { $viewport = array( '#type' => 'html_tag', '#tag' => 'meta', '#attributes' => array( 'name' => 'viewport', 'content' => 'width=device-width, initial-scale=1.0, maximum-scale=2.0, minimum-scale=0.55, user-scalable=yes', ), ); drupal_add_html_head($viewport, 'viewport'); } 根据您现在使用的更改通知#attached。因此,上面的代码本质上是相同的,最后一部分变为: $build['#attached']['html_head'][] = [$viewport, 'viewport']; 但是,这不起作用,并且看门狗中没有错误消息。我也尝试将其放在页面alter中以及$build与$variables和进行交换,$output但仍然无法正常工作。另外,我尝试将整个过程作为数组: $build['#attached']['html_head'][] = array( '#type' => 'html_tag', '#tag' => 'meta', '#attributes' => …
9 theming  8  meta-tags 

4
如何在视图上定义元标签?[关闭]
关闭。这个问题是题外话。它当前不接受答案。 想改善这个问题吗? 更新问题,使它成为Drupal Answers 的主题。 3年前关闭。 是否可以使用Views 3.0 在drupal 7中定义用于视图页面显示的元标记的模块或某些配置?
8 7  views  meta-tags 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.