Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. /**
  2. * Implements hook_taxonomy_menu_update().
  3. */
  4. function MODULENAME_taxonomy_menu_update(&$item) {
  5. $term = taxonomy_term_load($item['tid']);
  6. if ($term && !empty($term->field_menu_title['und'][0]['value'])) {
  7. $item['name'] = $term->field_menu_title['und'][0]['value'];
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement