Breadcrumb navigation into "Whitespace" theme tagline
Permalink
Hiya,
I am trying to insert a breadcrumb navigation line into the tagline of the "Whitespace" theme. I've found the tagline to be in header.php and is currently:
I've gone through the forums and found this code snippet:
But not sure where to put it.
So I'm wondering, how do I need to change the header.php so that it displays a breadcrumb rather than just the current page name?
TIA
Edit May 17th - Is this question too stupid to get an answer? Anyone? Please?
I am trying to insert a breadcrumb navigation line into the tagline of the "Whitespace" theme. I've found the tagline to be in header.php and is currently:
I've gone through the forums and found this code snippet:
<?php $breadcrumbs = BlockType::getByHandle('autonav'); $breadcrumb->controller->orderBy = 'display_asc'; $breadcrumb->controller->displayPages = 'top'; $breadcrumb->controller->displaySubPages = 'relevant_breadcrumb'; $breadcrumb->controller->displaySubPageLevels = 'all'; $breadcrumb->render('templates/breadcrumb'); ?>
But not sure where to put it.
So I'm wondering, how do I need to change the header.php so that it displays a breadcrumb rather than just the current page name?
TIA
Edit May 17th - Is this question too stupid to get an answer? Anyone? Please?
And works like a charm.