向内容元素添加限制

时间:2020-01-28 13:13:48

标签: typo3 typo3-9.x

我使用TYPO3 9x设置了一个网站,并插入了以下类型的内容元素:

Categorized content [menu_categorized_content]

目标是显示给定类别中的内容。

但是我需要限制内容记录的数量以仅显示3条记录。

如何添加此功能以限制内容数量?

1 个答案:

答案 0 :(得分:3)

TYPO3正在使用DatabaseQueryProcessor从数据库中获取记录。

您可以在以下位置找到设置:

typo3/sysext/fluid_styled_content/Configuration/TypoScript/ContentElement/MenuCategorizedContent.typoscript

DatabaseQueryProcessor使用TypoScript的默认.select语法,您可以在此处找到文档:https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/Functions/Select.html#comprehensive-example

您可以将其添加到您的TypoScript中:

tt_content.menu_categorized_content.dataProcessing.10.max = 3