欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

drupal7 d7 设置 修改 html 的 $title 即 $head_title 自己亲自做的 有大用 有大大用

template.php  文件中

image.png



function
bartik_clone_preprocess_html(&$variables)
{

  ...............

 if($_GET['q'] == 'list_cs_computers_format'){
     $head_title = array(
         'title' => '厂商电脑工控机出NPI格式化清单',
         'name' => check_plain(variable_get('site_name', 'Drupal')),
     );
   $variables['head_title'] = implode(' | ', $head_title);
 }

 if($_GET['q'] == 'list_bg_computers_format'){
   $head_title = array(
       'title' => '办公电脑出NPI列表',
       'name' => check_plain(variable_get('site_name', 'Drupal')),
   );
   $variables['head_title'] = implode(' | ', $head_title);
 }
 ...............
}



普通分类: