Drupal-在中添加规范标记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal-在中添加规范标记相关的知识,希望对你有一定的参考价值。

For our project, this code had been implemented in the theme template.php
  1. function yourtemplate_preprocess_html(&$vars) {
  2. // get the request parameters
  3. $reqParams = explode('?', $_SERVER['REQUEST_URI']);
  4. $canon = 'http://www.marlux.com' . $reqParams[0];
  5. // create a canonical object
  6. $canonical = array(
  7. '#type' => 'html_tag',
  8. '#tag' => 'link',
  9. '#attributes' => array(
  10. 'name' => 'canonical',
  11. 'content' => $canon,
  12. ),
  13. );
  14. // add the canonical object to the html head
  15. drupal_add_html_head($canonical,'canonical');
  16. }

以上是关于Drupal-在中添加规范标记的主要内容,如果未能解决你的问题,请参考以下文章

Javascript代码片段在drupal中不起作用

Drupal7将Classname添加到body标记

markdown 将类添加到Drupal 8页面的body标记而不更改模板

markdown 将类添加到Drupal 8页面的body标记而不更改模板

Drupal 6 视图 2:PHP 片段

将 Google 地图添加到 Drupal 中的联系信息页面