无法使用 zen 子主题列出子菜单项。
我的主菜单:
-> 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']); ?>
我还在主菜单中检查了产品菜单项的“显示为扩展” 。
请给我解决方案。