This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function THEMENAME_preprocess_menu(&$variables, $hook) { | |
if ($hook == 'menu_main') { | |
THEMENAME_menu_active_item($variables['items']); | |
} | |
} | |
function THEMENAME_menu_active_item(&$items) { | |
$current_path = \Drupal::request()->getRequestUri(); | |
foreach ($items as $key => $item) { | |
// if path is current path, set active to li |