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

farald’s picture

Title: Output custom breadcrumb trail » Output taxonomy trail in node.tpl using this module
MGN’s picture

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.

MGN’s picture

Status: Active » Closed (fixed)

closing because the question was answered.

farald’s picture

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