Recent searches

in

heading

On this page

This key defines a short, descriptive label for a group of Collections displayed in the Site Navigation.

This key is required for each group entry in the collection_groups array.

Appears in

└── collection_groups
    └── [*]
        └── heading

Type

string Required

Examples

In this example, we have configured two Collection groups with a heading that labels the group in the Site Navigation.

Copied to clipboard
collection_groups:
  - heading: Content
    collections:
      - pages
      - blog
  - heading: Data Files
    collections:
      - data
{
  "collection_groups": [
    {
      "heading": "Content",
      "collections": [
        "pages",
        "blog"
      ]
    },
    {
      "heading": "Data Files",
      "collections": [
        "data"
      ]
    }
  ]
}
Open in a new tab