function theme_tvi_breadcrumb in Taxonomy Views Integrator 6
Same name and namespace in other branches
- 7 tvi.module \theme_tvi_breadcrumb()
Returns the taxonomy page breadcrumb (for active view overrides).
The algorithm we use is based off of $views->get_breadcrumb(), but has a few important differences. Override this if you have your own breadcrumb method.
1 theme call to theme_tvi_breadcrumb()
- tvi_render_view in ./
tvi.module - Replaces taxonomy page callback
File
- ./
tvi.module, line 168 - Enables use of views for taxonomy pages.
Code
function theme_tvi_breadcrumb($term, $view) {
return tvi_get_breadcrumb($term, $view);
}