获取指定栏目下面的所有单页内容
1
{pboot:nav parent=栏目编号}
2
{pboot:if(‘[nav:type]’==1)}
3
{pboot:content scode=[nav:scode]}
4
[content:content]
5
{/pboot:content}
6
{/pboot:if}
7
{/pboot:nav}
获取指定栏目下面的所有单页内容,并且排除指定编号
1
{pboot:nav parent=栏目编号}
2
{pboot:if(‘[nav:type]’==1 && ‘[nav:scode]’ != 需要排除的编号)}
3
{pboot:content scode=[nav:scode]}
4
[content:content]
5
{/pboot:content}
6
{/pboot:if}
7
{/pboot:nav}