我正在尝试显示当前页面的类别
因为我在TYPO3中不是那么好,所以在尝试显示当前之前,我首先尝试显示所有类别。
以下代码段无论如何都不起作用。
lib.categorized_content = RECORDS
lib.categorized_content {
categories.field = selected_categories
categories.relation.field = category_field
tables = tt_content
conf.tt_content = TEXT
conf.tt_content {
stdWrap.field = header
stdWrap.typolink.parameter = {field:pid}
stdWrap.typolink.parameter.insertData = 1
stdWrap.wrap = <li>|</li>
}
wrap = <ul>|</ul>
}
这是我从以下网址获取此代码段的地方:https://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Records/Index.html#categories
我正在使用<f:cObject typoscriptObjectPath="lib.categorized_content" />
将其实施到我的模板中。
有人可以帮忙吗?
答案 0 :(得分:1)
selected_categories
和category_field
是.field
内容元素中的flexform字段(正如您从配置属性的后缀Special Menu
中看到的那样)。
你必须用实际值替换那些。