我目前正在为我的网页制作搜索引擎优化。因此,我想从浏览器中当前打开的新闻文章中获取page.meta.author/title/description ....如果没有设置,它应该回退到常量中配置的默认值。
我正在做类似的事情:
page.meta {
author < plugin.tx_news.currentNewsItem.author // I don't know what to write here
author.ifEmpty = {$page.meta.author}
}
此外,我不确定以下代码的作用:
page.meta {
author {
override.field = author
}
}
我感谢所有的帮助。
答案 0 :(得分:1)
正如@Ghanshyam Bhava在评论中建议的那样,我在我的设置标题中使用了这个:
[globalVar = GP:tx_news_pi1|news > 0]
page {
config {
noPageTitle = 0
}
headerData {
776 >
}
meta {
description >
author >
keywords >
}
}
[end]
我只需要修改headerdata号码,因为我正在使用SEO_Basics扩展,我还必须确保扩展的层次结构在模板中是正确的。
对于页面元标记,我使用了常量typoscript中定义的默认值,只要当然不符合上述条件。