Typo3:如何将页面标题动态插入到描述元标记中
使用介绍包4.5 (不是模板瞧)
page.meta 模板在设置中设置元标记“description”
page.meta {
description = {$plugin.meta.description}
}
:。 。 。并且描述字符串值在根模板中定义常量:
plugin.meta {
description = description string goes here
}
但是现在如何动态地将每个页面标题包含在描述元标记中? 任何线索之类的东西
description = {plugin.meta.description}{pageTitle.value} ?
将不胜感激。
Using the Introduction Package 4.5
(Not templa voila)
The page.meta template sets the meta tag 'description' in Setup:
page.meta {
description = {$plugin.meta.description}
}
. . . and the description string value is defined in the root template Constant:
plugin.meta {
description = description string goes here
}
But now how do I dynamically include each Page Title in the Description meta tag?
Something like
description = {plugin.meta.description}{pageTitle.value} ?
Any clues will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在
description
上使用任何 stdWrap 函数,我将使用 COA 来组合这些值:您可以在此处找到更多信息:http://wiki.typo3.org/TSref/META
You can use any stdWrap function on
description
, I would use a COA to combine those values:You can find more information here: http://wiki.typo3.org/TSref/META
要将其放在一行中,您可以在描述上使用 .dataWrap ,如下所示:
To put this in a single line you could use .dataWrap on description like this: