Posted by farald on March 9, 2009 at 8:22am
Jump to:
| Project: | Taxonomy Breadcrumb |
| Version: | 6.x-1.0 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
Greetings!
Is it possible, using this module, to make custom call to output the taxonomy trail in the middle of the node instead of in the breadcrumb?
Like this: Submitted by Foo in Articles->Tech->Linux
If yes, how?
Thanks
Comments
#1
#2
Yes. You can get the breadcrumb array through
$breadcrumb = drupal_get_breadcrumb();then you can format it however you like, as in<?php $breadcrumbs = drupal_get_breadcrumb();print 'submitted on '. $submitted . implode('>>',$breadcrumbs); ?>
Hope this helps.
#3
closing because the question was answered.
#4
Yes, and thank you for the answer by the way:)