diff --git a/docs/5.x/reference/field-types/link.md b/docs/5.x/reference/field-types/link.md index 929a3f38f..a28fb20db 100644 --- a/docs/5.x/reference/field-types/link.md +++ b/docs/5.x/reference/field-types/link.md @@ -85,7 +85,11 @@ Like elements, you can also render a complete anchor tag: {{ entry.myLinkFieldHandle.link }} ``` -Craft will figure out the best textual representation of the link—a selected element’s `title`, the URL (sans protocol), or the raw phone number, for example. +Craft will figure out the best textual representation of the link—a selected element’s `title`, the URL (sans protocol), or the raw phone number, for example. That text—or `label`—can be retrieved via the `LinkData` model, in addition to the raw `value`: + +```twig +{{ entry.linkFieldHandle.label }} +``` ### Relations