请问typecho模板如何根据“独立页面”的slug,调用“独立页面”下的内容呢?


请问typecho模板如何根据“独立页面”的slug,调用“独立页面”下的内容呢?

我想将具体某个独立页面的内容显示到首页的某个栏目里面,如:页面的url,标题,作者等。请问如何根据页面的slug调用?

typecho typecho插件

ReiRou 9 years, 10 months ago

居然没人来帮助,已自解决。


 <?php $this->widget('Widget_Contents_Page_List'; ?>
<?php while($pages->next()): ?>
    <?php if ($pages->slug == 'about-page'): ?>
        <?php $pages->content(); ?>
    <?php endif; ?>
<?php endwhile; ?>

仅通过系统提供的方式调用,有没有更好的方案?

Stefan answered 9 years, 10 months ago

Your Answer