Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save flocondetoile/dc0329cc7c8b1b5a816645899953bfd1 to your computer and use it in GitHub Desktop.
Save flocondetoile/dc0329cc7c8b1b5a816645899953bfd1 to your computer and use it in GitHub Desktop.
/**
* Implements hook_preprocess_HOOK().
*/
function mymodule_preprocess_menu(&$variables) {
if ($variables['menu_name'] == 'main') {
$variables['terms_list'] = views_embed_view('name_view', 'name_display');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment