继续Drupal分享精神 QQ群:107748121 站长QQ:2275288328 skype: hellodrupal【drupal交流+drupal 建站+theme制作】
登录 注册

Drupal 导航面包屑加上当前标题

在开发drupal的时候, 想把当前标题加上导航面包屑里面去,今天发现了这样处理就可以做到,Drupal breadcrumb的重写覆盖操作确实很简单。只要在Druapl 主题,你自己开启的主题里面的template.php文件里面来定义一下就可以做到这样的效果:主页>>主题开发>>Drupal 导航面包屑加上当前标题 这样的导航样式了。代码如下:

<?php
   
function  YOURTHEMENAME_breadcrumb($breadcrumb) {//YOURTHEMENAME改为自己的使用的主题名词即可。
   

 
if (!empty($breadcrumb)) {// 判断drupal breadcrumb是否为空。
  
$breadcrumb[] = l(drupal_get_title(), $_REQUEST['q']);//使用drupal_get_title()得到标题名称,$_REQUEST['q']得到衔接路径了。
   
return '<div class="breadcrumb">'. implode(' › ', $breadcrumb).'</div>';
  }
}
?>

评论

发表新评论

此内容将保密,不会被其他人看见。
  • 自动将网址与电子邮件地址转变为链接。
  • 自动断行和分段。
  • You can use BBCode tags in the text.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

更多关於格式化选项的信息

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image.