Hi,
on my homepage I would like to show two columns of the children from another directory. At the moment the homepage is built like this:
<section class="tiles">
<?php foreach ($page->children()->visible() as $p): ?>
So instead of $page->children(), I would like to have $other_page_A->children() and $other_page_B->children().
How would this be possible?
Daniel