hugo/docs/content/en/methods/pager/PageSize.md
2024-08-09 15:17:43 +02:00

935 B

title description categories keywords action expiryDate
PageSize Returns the number of pages per pager.
related returnType signatures
methods/page/Paginate
int
PAGER.PageSize
2025-06-09

{{% deprecated-in 0.128.0 %}} Use PAGER.PagerSize instead.

{{% /deprecated-in %}}

The number of pages per pager is determined by the optional second argument passed to the Paginate method, falling back to the pagerSize as defined in your site configuration.

{{ $pages := where site.RegularPages "Type" "posts" }}
{{ $paginator := .Paginate $pages }}

{{ range $paginator.Pages }}
  <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}

{{ with $paginator }}
  {{ .PageSize }}
{{ end }}