Output taxonomy trail in node.tpl using this module
hamaldus - March 9, 2009 - 08:22
| Project: | Taxonomy Breadcrumb |
| Version: | 6.x-1.0 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
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

#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:)