簡體   English   中英

Typo3帶有摘要的豐富片段

[英]Typo3 Rich Snippets with typoscript

我無法在我的typo3站點中實現豐富的代碼片段。 基本上,我嘗試包裝html標記,並包含元摘錄,但無濟於事,而是一連串的網站錯誤。

 page.meta.itemprop.name = name page.meta.itemprop.description = description page.meta.itemprop.image = http://www.example.com/img/01.png 

html代碼如下

 <html itemscope itemtype="http://schema.org/Organization"> <meta itemprop="name" content="name"> <meta itemprop="description" content="description"> <meta itemprop="image" content="http://www.example.com/image.png"> 

應該使用什么打字稿?

這為我解決了。

 config.htmlTag_stdWrap { setContentToCurrent = 1 cObject = COA cObject { 1 = TEXT 1.value = itemscope 1.noTrimWrap = | | | 2 = TEXT 2.value = itemtype="http://schema.org/Organization" 2.noTrimWrap = | | | 3 = TEXT 3.value = lang="en" wrap = <html | > } } page { headerData { 4 = TEXT 4.value ( <meta itemprop="name" content="Your site Name"> <meta itemprop="description" content="Your site description"> <meta itemprop="image" content="http://www.example.com/img/01.png"> ) } } 

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM