Re: Need some ideas on pages and posts (nee WP)
Posted: Sat May 17, 2025 3:27 pm
So,
After quite a bit of to-ing and fro-ing, the foreach statement looks like:
This works as desired.
Thank you!
After quite a bit of to-ing and fro-ing, the foreach statement looks like:
Code: Select all
<?php foreach ($staticContent as $staticPage): ?>
<?php if (!$staticPage->isChild() && $staticPage->template() !== "hidden"): ?>
<li class="<?php echo ($staticPage->permalink()==$page->permalink())?'active':'' ?>"><a href="<?php echo $staticPage->permalink() ?>#main"><?php echo $staticPage->title() ?></a></li>
<?php endif; ?>
<?php endforeach ?>Thank you!