2019-02-19, 01:01:25
(2019-02-18, 19:27:07)SalamandersPL Wrote: Still, i have them ordered different way on the page than in GetSimple.
https://salamanders-studio.com/temp/getsimple.png
https://salamanders-studio.com/temp/result.png
(if you ask about my getsimple look: this is a css plugin, not modified core)
I see that you use numbers in the title (h2).
So try this code:
PHP Code:
function getChildrenTitle($page)
{
$children = getChildren($page);
$pagesSorted = subval_sort($children, SORT_NUMERIC);
$pagesSorted = array_reverse($pagesSorted, true);
foreach ($pagesSorted as $subpage)
{
$title = returnPageField($subpage,'title');
echo '<div class="parent">';
echo '<h2>'.$title.'</h2>';
echo '</div>';
}
}