2014-07-12, 11:56:10
(2014-07-12, 00:15:58)lukinhasb Wrote: template.php
PHP Code:<ul id="nav">
<?php get_i18n_navigation($slug, $minlevel=0, $maxlevel=0, $show=I18N_SHOW_NORMAL, $component=menu_custom) ?>
</ul>
Most likely you want to use:
PHP Code:
<ul id="nav">
<?php get_i18n_navigation($slug, 0, 0, I18N_SHOW_NORMAL, 'menu_custom');?>
</ul>