WebsiteBaker 2.13.9 R22 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
<?php// Submenu alleen tonen als dat gevuld isob_start();show_menu(1,2,1,true,'<li>[a][menu_title][/a]','</li>','<ul>','</ul>','','class="current"');$childmenu=ob_get_contents();ob_end_clean();if ($childmenu!="") {?><div class="menu_left"> <h1><?php show_breadcrumbs('',2,true,0);?></h1> <?php echo $childmenu; ?></div><?php } ?>
Looks real good!You could consider making it even better by replacing the text Vervolgmenu with something likeCode: [Select] <?php// Submenu alleen tonen als dat gevuld isob_start();show_menu(1,2,1,true,'<li>[a][menu_title][/a]','</li>','<ul>','</ul>','','class="current"');$childmenu=ob_get_contents();ob_end_clean();if ($childmenu!="") {?><div class="menu_left"> <h1><?php show_breadcrumbs('',2,true,0);?></h1> <?php echo $childmenu; ?></div><?php } ?>You'd get the 1st level menu item as a heading, and its children as a sub menu list.Regards,Vincent