Meta Tags Reference
FieldsLink to this section
Title |
Description |
Prefix |
Add this text in front of the title for pages (LCFs) created from this layout. |
Suffix |
Add this text at the end of the title for pages created from this layout. |
Minimum Length |
The minimum length for the page title. |
Maximum Length |
The maximum length for the page title. Must be greater than the minimum length. |
Access Group |
The group who can edit the title in page properties. |
Description | |
Default (required when using Open Graph or Twitter Cards) |
Set a default description for all pages created from this layout. |
Minimum Length |
The minimum length for the page description. |
Maximum Length |
The maximum length for the page description. Must be greater than the minimum length. |
Access Group |
The group who can edit the description in page properties. |
Keywords | |
Add Keywords |
Allow pages created from this layout to have keywords. Toggled On by default. |
Default |
Set default keywords for pages created from this layout. |
Access Group |
The group who can edit the keywords in page properties. |
Canonical Link | |
Add Canonical Link |
Add a canonical link ( Toggled On by default. |
Robots | |
Add Robots |
Add a robots meta tag ( |
Default Rule |
Set the rule (directive) that will be used in the robots meta tag for pages created from this layout. In the dropdown, select, All: No restrictions for browser indexing or serving. None: Equivalent to No Follow: Do not follow the links on this page. No Index: Do not show this page, media, or resource in browser search results. |
Access Group |
The group who can edit the robots rule in page properties. |
Custom Meta Tags | |
Name |
Set a name for this custom meta tag. |
Default |
Set the default content for pages created from this layout. |
Type |
Set a meta tag type (attribute) for pages created from this layout. In the dropdown, select Name: Property: |
Access Group |
The group who can edit this meta tag in page properties. |
Open Graph (all fields required) | |
Add Open Graph |
Select to add Open Graph meta tags to pages created from this layout. The meta tag The page |
Title |
Select to use the page title as the Open Graph title. |
Description |
Select to use the page description as the Open Graph description. |
Default Image |
Set a default image for pages created from this layout. |
Default Image Alt Text |
Set an alternative description for the default image. |
Access Group |
The group who can edit the Open Graph meta tags in page properties. |
Twitter Card (all fields required) | |
Add Twitter Card |
Select to add Twitter Card meta tags to pages created from this layout. |
Title |
Use the page title as the Twitter Card title. |
Description |
Use the page description as the Twitter Card description. |
Card Type |
Set the Twitter Card type, Summary or Summary Large, for pages created from this layout. |
Default Image |
Set a default image for pages created from this layout. |
Default Image Alt Text |
Set an alternative description for the default image. |
Site |
Enter the Twitter username for the website. Must start with the @ symbol. |
Access Group |
The group who can edit the Twitter Card meta tags in page properties. |
Web-Standard OrderingLink to this section
Layout Builder will add <meta>
tags inside the <head>
element of an LCF, using web-standard ordering of items. Example as follows:
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>xxx</title>
<meta name="description" content="xxx">
<meta name="keywords" content="xxx">
<meta name="robots" content="all">
<meta property="og:title" content="xxx">
<meta property="og:description" content="xxx">
<meta property="og:image" content="xxx">
<meta property="og:image:alt" content="xxx">
<meta property="og:type" content="website">
<meta name="twitter:title" content="xxx">
<meta name="twitter:description" content="xxx">
<meta name="twitter:image" content="xxx">
<meta name="twitter:image:alt" content="xxx">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@xxx">
<link rel="stylesheet" href="xxx">
<script src="xxx"></script>
<link rel="canonical" href="xxx">
<meta property="og:url" content="xxx">
</head>