Hello,
I have small problem.
I have a site which has lots of links to website baker pages. And many links are outside WebsiteBaker content -area.
Is it possible to [wblink-page-id] style link added to my tempalte file.
example: <a href="[wblink3]">My Link</a>
Note. This link is not a WYSIWYG editor page. This link are my template footer. :-)
It is possibel to do in a inofficial way.
You must buffer your footer and do a extra parsing
<?php
ob_start();
?>
...
place here all your HTML and PHP of your footer (including your [wblinkxxx] parts)
...
<?php
$output = ob_get_contents();
ob_end_clean();
$wb->preprocess($output);
echo $output;
?>
I've not testet yet... but it should work. (without any guaranty) 8-)
WOOW! :-D
This works very vell.
Thank you very much! :-D
--
Tinke