WebsiteBaker 2.13.8 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 ob_start(); // start output buffer show_menu(1,2,1,true,'<li>[a][menu_title][/a]</li>','','','','',''); // call menu $foo=ob_get_contents(); // put outputbuffer in $foo ob_end_clean(); // clear outputbuffer if ($foo<>"") { // some code to execute cause there is some block echo '<div id="menu-page">'; echo '<h3>Menu</h3>'; echo '<ul>'; echo $foo; echo '</ul>'; // show the block (as saved in $foo) echo '</div>'; } else { // some code for no info } ?>
// some code for no info
echo '<div id="empty"></div>';