TypoScript中的条件包装

时间:2011-11-18 11:44:37

标签: php typo3 typoscript

我使用以下TypoScript渲染内容:

temp.addcol5 = CONTENT
temp.addcol5 {
  table = tt_content
  select {
    pidInList = this
    orderBy = sorting
    where = colPos = 5
    languageField = sys_language_uid
  }
}
temp.addcol5.wrap = <div class="content middle"> | </div>

我想仅在数据库中有任何记录时才包装内容。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:4)

您可能想尝试

temp.addcol5.stdWrap {
  wrap= <div class="content middle"> | </div>
  required =1
}