--- title: Params description: Returns the `params` property of the given menu entry. categories: [] keywords: [] action: related: [] returnType: maps.Params signatures: [MENUENTRY.Params] --- When you define menu entries [in site configuration] or [in front matter], you can include a `params` key to attach additional information to the entry. For example: {{< code-toggle file=hugo >}} [[menu.main]] name = 'About' pageRef = '/about' weight = 10 [[menu.main]] name = 'Contact' pageRef = '/contact' weight = 20 [[menu.main]] name = 'Hugo' url = 'https://gohugo.io' weight = 30 [menu.main.params] rel = 'external' {{< /code-toggle >}} With this template: ```go-html-template