Quote:
Originally Posted by joejoemaker
How can I use another template in the template for the new page?
|
You will need to render the template in your php code.
PHP Code:
$newTemplate = vB_Template::create('someTemplate');
$newTemplate->register('variable1', $somearray);
$newTemplate->register('variable2', $variabletwo);
$another_template = $newTemplate->render();
Then make sure you register $another_template for use in the TEST template.