2011-03-30, 00:44:34
yojoe Wrote:Mvlcek: does your menu plugin allow to display only slugs of a certain parent ?
Supposing yes, how should I call it ?
I doubt this is going to work: <?php get_i18n_navigation(return_page_slug("parent-url-name")); ?>
If your parent slug is "parent-url-name" and it is on the topmost level (hierarchy level 0), you should be able to display all children (hierarchy level 1) like this:
Code:
<?php get_i18n_navigation("parent-url-name", 1, 1); ?>
Or replace the third parameter with null to see the whole subtree.