据我所知,我已正确设置了我的部分/数据源。它被设置为包括system:pagination以及每3个条目的分页。
为了获得分页,我使用的是受欢迎的xslt utility
这是档案/类别页面:
<xsl:import href="../utilities/master.xsl"/>
<xsl:import href="../utilities/pagination.xsl"/>
<xsl:import href="../utilities/get-article.xsl"/>
<xsl:template match="data">
<div class="col span-9">
<div class="span-9">
<h4 class="nudge-3"><xsl:value-of select="categories/entry/title[@handle = $category]"/></h4>
</div>
<xsl:apply-templates select="archive-listing/entry" mode="short"/>
<xsl:call-template name="pagination">
<xsl:with-param name="pagination" select="archive-listing/pagination"/>
<xsl:with-param name="pagination-url" select="{$current-url}/archive/category/{title/@handle}?page=$"/>
</div>
</xsl:call-template>
<div id="sidebar" class="col last span-3">
<xsl:call-template name="social"/>
<xsl:call-template name="category"/>
<xsl:call-template name="tag"/>
<xsl:call-template name="external-links"/>
</div>
</xsl:template>
</xsl:stylesheet>
这是我的?调试显示唯一出现的分页:
<archive-listing>
<pagination total-entries="11" total-pages="4" entries-per-page="3" current-page="1" />
无论如何,这是解决方案。按照callovarne的建议并采取措施,他告诉我,我能够达到这个目的。因此,如果您遇到这个问题,请务必查看:
<xsl:apply-templates select="archive-listing/entry" mode="short"/>
<xsl:call-template name="pagination">
<xsl:with-param name="pagination" select="archive-listing/pagination"/>
<xsl:with-param name="pagination-url" select="concat($root, '/archive/category/', $category, '/$')"/>
答案 0 :(得分:0)
检查这些以开始:
pagination
元素中查找期望值
我想您对分页模板的调用可能如下所示:
<xsl:call-template name="pagination">
<xsl:with-param name="pagination" select="archive-listing/pagination"/>
<xsl:with-param name="pagination-url" select="concat($current-url, '/archive/category/', title/@handle, '?page=$')"/>
</xsl:call-template>