如何重命名后端标签,例如'author' 在 Typo3 中并阅读它们

How can I rename backend labels e.g. 'author' in Typo3 and read them

如何重命名两个后端标签 'author' 和 'author_email',您可以在编辑页面属性的选项卡 'Metadata' 中找到它们。

我尝试首先在模板配置中使用以下代码片段,然后在页面属性中页面 TSConfig 的资源选项卡中使用以下代码片段,清空所有缓存但没有任何反应:

TCEFORM {
tt_content {
    author.label = Teaser
}

}

参见:How to rename subheader in TYPO3 CMS backend

还有这个:

TCEFORM.author.label.default = Teaser
TCEFORM.author_email.label.default = Sub_Teaser

我尝试通过以下方式阅读这些字段:

lib.teaser.20 = TEXT
lib.teaser.20.data = levelfield : -1 , author, slide

有人可以帮忙吗?

字段作者和 author_email 是 table "pages" 的属性,而不是 "tt_content"。 请试试这个: TCEFORM { pages { author.label = Teaser } }