get children/descendants pages from specific page ?? #936
Unanswered
OffLine911
asked this question in
Q&A
Replies: 2 comments
|
You could use $site->findPage('route/to/specific/page')->children();Then you can display children pages with a <?php foreach ($site->findPage('route/to/specific/page')->children() as $childPage): ?>
<article>
<h1><a href="<?= $childPage->uri() ?>"><?= $childPage->title() ?></a></h1>
<?= $childPage->content() ?>
</article>
<?php endforeach; ?>I hope you find this information useful. |
0 replies
|
thanks it worked |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
how we can get children/descendants pages from specific page and display it ??
All reactions