Download & Extend

Output taxonomy trail in node.tpl using this module

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

Title:Output custom breadcrumb trail» Output taxonomy trail in node.tpl using this module

#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

Status:active» closed (fixed)

closing because the question was answered.

#4

Yes, and thank you for the answer by the way:)