2019-02-15, 19:01:08
(2019-02-15, 03:05:04)SalamandersPL Wrote: Hello?
Can anyone can help me to order this list?
In theme folder create functions.php and add this code:
PHP Code:
function getChildrenTitle($page)
{
$children = getChildren($page);
foreach ($children as $subpage)
{
$title = returnPageField($subpage,'title');
echo '<div class="parent">';
echo '<h2>'.$title.'</h2>';
echo '</div>';
}
}
Call the function in template:
PHP Code:
<?php getChildrenTitle('term-conditions');?>