无法使用zen subtheme列出子菜单项。
我的主菜单:
-> Home
-> Product
-> men
-> female
-> about
我的问题:
- >子菜单“男人”和“女性”未显示
我做得太多了
我的代码在page.tpl.php
<?php if ($main_menu): ?>
<?php
// This code snippet is hard to modify. We recommend turning off the
// "Main menu" on your sub-theme's settings form, deleting this PHP
// code block, and, instead, using the "Menu block" module.
// @see https://drupal.org/project/menu_block
print theme('links__system_main_menu', array(
'links' => $main_menu,
'attributes' => array(
'class' => array('links', 'inline', 'clearfix'),
),
'heading' => array(
'text' => t('Main menu'),
'level' => 'h2',
'class' => array('element-invisible'),
),
)); ?>
<?php endif; ?>
<?php print render($page['navigation']); ?>
我还在主菜单中检查“显示为扩展”产品菜单项。
请给我解决方案。