hugo/docs/content/en/methods/page/LinkTitle.md
Bjørn Erik Pedersen 5fd1e74903
Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'
```
git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
```

Closes #11925
2024-01-27 10:48:57 +01:00

863 B

title description categories keywords action
LinkTitle Returns the link title of the given page.
related returnType signatures
methods/page/Title
string
PAGE.LinkTitle

The LinkTitle method returns the linkTitle field as defined in front matter, falling back to the value returned by the Title method.

{{< code-toggle file=content/articles/healthy-desserts.md fm=true >}} title = 'Seventeen delightful recipes for healthy desserts' linkTitle = 'Dessert recipes' {{< /code-toggle >}}

{{ .LinkTitle }} → Dessert recipes

As demonstrated above, defining a link title in front matter is advantageous when the page title is long. Use it when generating anchor elements in your templates:

<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>