Get nav from 1 page?
Permalink
I want to setup a mult language site like
-en
--home
--contact
-th
--home
--contact
Is it possible to fetch the sub pages of a page by name?
I found this snippet on the forum but how would I set a parent page?:
-en
--home
--contact
-th
--home
--contact
Is it possible to fetch the sub pages of a page by name?
I found this snippet on the forum but how would I set a parent page?:
<?php $bt_main = BlockType::getByHandle('autonav'); $bt_main->controller->displayPages = 'below'; $bt_main->controller->orderBy = 'display_asc'; $bt_main->controller->displaySubPages = 'all'; $bt_main->render('templates/level1'); ?>