I'd like to show a list of all cloned pages on every page but omitting the current one. Is this possible? I found the following topic which I thought would solve this but it isn't working. Maybe I misunderstood the original poster's intent. viewtopic.php?f=2&t=7366
How can I do this? I tried this, but it didn't work.
How can I do this? I tried this, but it didn't work.
- Code: Select all
<cms:pages masterpage='blog.php' id='NOT <cms:show k_page_id />' orderby='publish_date' limit='10'> <article class="archive-content-block"> <h3 class="archive-title"><a href="<cms:show k_page_link/>"><cms:show k_page_title/></a></h3> <div class="archive-content"> <cms:excerpt count='20'><cms:show blog_article/></cms:excerpt> <div class="more-link-wrapper"> <a href="<cms:show k_page_link/>" class="more-link">More <i class="fal fa-arrow-right"></i></a> </div> </div> </article> </cms:pages>