You are here

function theme_tvi_title in Taxonomy Views Integrator 6

Returns the taxonomy page title (for active view overrides).

We just default to letting views take care of that. Override if you wish.

1 theme call to theme_tvi_title()
tvi_render_view in ./tvi.module
Replaces taxonomy page callback

File

./tvi.module, line 158
Enables use of views for taxonomy pages.

Code

function theme_tvi_title($term, $view) {
  return $view
    ->get_title();
}