Example:
$this->breadcrumbs=array(
'Forum'=>array('forum/index', array('title'=>'Forum')), //dont generate the title, here the title is a param
'same post' //is it inactive
);
How to use title?
Example:
$this->breadcrumbs=array(
'Forum'=>array('forum/index', array('title'=>'Forum')), //dont generate the title, here the title is a param
'same post' //is it inactive
);
How to use title?
I guess you will have to customize the widget are right your own
Maybe.
Edit:
I think this is almost good. Here the label is the title.
'activeLinkTemplate'=>'<a href="{url}" title="{label}">{label}</a>',
It’s not built-in as you can see from the doc and the source code.
However, Raoul made an extension: ExBreadcrumbs
There’s a demo including your request for the title attribute
Edit: yes, you can extend like you did