Params
Returns a collection of the shortcode arguments.
Syntax
SHORTCODE.Params
Returns
any
When you call a shortcode using positional arguments, the Params method returns a slice.
content/about.md
{{< myshortcode "Hello" "world" >}}layouts/_shortcodes/myshortcode.html
{{ index .Params 0 }} → Hello
{{ index .Params 1 }} → worldWhen you call a shortcode using named arguments, the Params method returns a map.
content/about.md
{{< myshortcode greeting="Hello" name="world" >}}layouts/_shortcodes/myshortcode.html
{{ .Params.greeting }} → Hello
{{ .Params.name }} → worldLast updated:
June 18, 2026
:
Merge commit 'c86d9f4aa8a58931f52df6516f10b67c807505fb' (be780afa7)
Improve this page