List menu

A HMENU of type special = list lets you create a menu that lists the pages you define in the property special.value.

Mount pages are supported.

Properties

Property

value

Data type

list of page ids /stdWrap

Default

0

Description

This will generate a menu with the two pages (uid=35 and uid=56) listed:

EXT:site_package/Configuration/TypoScript/setup.typoscript
lib.listOfSelectedPages = HMENU
lib.listOfSelectedPages {
    special = list
    special.value = 35, 56
    // render the menu
}

If special.value is not set, the default uid is 0, so that only your homepage will be listed.

[tsref:(cObject).HMENU.special = list]

Examples