Skip to content

Instantly share code, notes, and snippets.

@init90
Last active May 4, 2018 19:33
Show Gist options
  • Save init90/18f01ac262738aaf184d4dfae34d84a3 to your computer and use it in GitHub Desktop.
Save init90/18f01ac262738aaf184d4dfae34d84a3 to your computer and use it in GitHub Desktop.
Drupal 7, Updated breadcrumb for views page.
/**
* Implements hook_views_pre_render().
*/
function MODULE_views_pre_render(&$view) {
if ($view->name == 'brand_page') {
$breadcrumbs = array();
$breadcrumbs[] = l(t('Home'), '<front>');
drupal_set_breadcrumb($breadcrumbs);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment