> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ghost.org/llms.txt
> Use this file to discover all available pages before exploring further.

# plural

> Usage: `{{plural value empty="" singular="" plural=""}}`

***

`{{plural}}` is a formatting helper for outputting strings which change depending on whether a number is singular or plural.

The most common use case for the plural helper is outputting information about how many posts there are in total in a collection. For example, themes have access to `pagination.total` on the homepage, a tag page or an author page. You can override the default text.

### Examples

```handlebars theme={"dark"}
{{plural pagination.total empty='No posts' singular='% post' plural='% posts'}}
```

`%` is parsed by Ghost and will be replaced by the number of posts. This is a specific behaviour for the helper.
