Typo3:如何将页面标题动态插入到描述元标记中

发布于 2024-12-08 16:59:00 字数 414 浏览 0 评论 0原文

使用介绍包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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

十六岁半 2024-12-15 16:59:00

您可以在 description 上使用任何 stdWrap 函数,我将使用 COA 来组合这些值:

page.meta.description.cObject = COA
page.meta.description.cObject {
    10 = TEXT
    10.value = {$plugin.meta.description}

    20 = TEXT
    20.data = field:title
}

您可以在此处找到更多信息:http://wiki.typo3.org/TSref/META

You can use any stdWrap function on description, I would use a COA to combine those values:

page.meta.description.cObject = COA
page.meta.description.cObject {
    10 = TEXT
    10.value = {$plugin.meta.description}

    20 = TEXT
    20.data = field:title
}

You can find more information here: http://wiki.typo3.org/TSref/META

七堇年 2024-12-15 16:59:00

要将其放在一行中,您可以在描述上使用 .dataWrap ,如下所示:

page.meta.description.dataWrap = {$plugin.meta.description} - {field:title}

To put this in a single line you could use .dataWrap on description like this:

page.meta.description.dataWrap = {$plugin.meta.description} - {field:title}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文