我正在尝试创建一个新的content element
(不确定它的名称是否正确),我想实现类似的目的
正文
在我的tt_content.php文件中,我具有以下内容:
'showitem' => '
--div--;Intro,
--palette--;LLL:EXT:/path/to/locallang_ttc.xlf:palette.general;
general,
header,
bodytext,
module_background_color,
--palette--;;cta,
我试图添加类似这样的内容
'showitem' => '
--div--;Intro,
--palette--;LLL:EXT:/path/to/locallang_ttc.xlf:palette.general;
general,
header,
header,
bodytext,
module_background_color,
--palette--;;cta,
或这个
'showitem' => '
--div--;Intro,
--palette--;LLL:EXT:/path/to/locallang_ttc.xlf:palette.general;
general,
header,
bodytext,
bodytext,
module_background_color,
--palette--;;cta,
都没有用,我只能得到1个标题和1个正文,我对此很陌生,某种程度上我需要这样做
p.s我无法通过1个标头完成此操作,因为每个标头都有自己的样式。 谢谢
答案 0 :(得分:1)
一列只能使用一次!
看看header
元素。在这里您可以看到名为subheader
的列。
因此,以下应添加另一个标题列:
'showitem' => '
--div--;Intro,
--palette--;LLL:EXT:/path/to/locallang_ttc.xlf:palette.general;
general,
header,
subheader,
bodytext,
module_background_color,
--palette--;;cta,