Home > Backend Development > PHP Tutorial > Drupal 7 navigation bar

Drupal 7 navigation bar

WBOY
Release: 2016-07-25 08:49:56
Original
763 people have browsed it
可输出二级子菜单
  1. if (module_exists('i18n_menu')) {
  2. $main_menu_tree = i18n_menu_translated_tree(variable_get('menu_main_links_source', 'main-menu'));
  3. } else {
  4. $main_menu_tree = menu_tree(variable_get('menu_main_links_source', 'main-menu'));
  5. }
  6. print drupal_render($main_menu_tree);
  7. endif; ?>
复制代码


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template