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
I figured out the solution. Had to use the Sections feature and add the code section above the WYSIWYG section. Had to add other sections to format the includes. Pretty clugy, but it worked. Thanks for help.
<? include '../../imagevar1.php'; ?>
<?php include("../../imagevar1.php"); ?>
<?php include ('../../imagevar1.php'); ?>
<?php include (WB_PATH.'/imagevar1.php'); ?>
<?php/*** @version 0.2.0* @date 2008-08-20* @author* @package WebsiteBaker - Code examples* @state @dev** Getting a random image for the header;* in the form "img_0<1|2|3>.jpg"**/echo "<img src='images/header/img_0".rand(1,3).".jpg'>";?>
<center> <table border="0" cellpadding="0" cellspacing="0" width="75%"> <tr> <td width="33%" align="center"><? echo "<img src='images/header/img_0".rand(1,3).".jpg'>"; ?></td> <td width="34%" align="center"><? echo "<img src='images/header/img_0".rand(1,3).".jpg'>"; ?></td> <td width="33%" align="center"><? echo "<img src='images/header/img_0".rand(1,3).".jpg'>"; ?></td> </tr> </table></center>