google-webmaster-tools
  • json-ld
  • 2015-04-25 99 views 0 likes 
    0

    我剛纔登錄到谷歌網站管理員工具,並正在尋找在涉及到一個新的WordPress主題的結構化數據的錯誤我使用:Google網站管理員工具:「解析您的JSON-LD時發生錯誤。」

    JSON-LD:有一個錯誤解析您的JSON-LD。

    ,它指的代碼是:

    <meta property="og:site_name" content="Townsville Nerds - Ph 0402 807 890" /> 
    <script type='application/ld+json'> 
        execOnReady(function({{"@context":"http:\/\/schema.org","@type":"WebSite","url":"http:\/\/www.townsvillenerds.com\/","name":"Townsville Nerds - Ph 0402 807 890"}}) 
    </script> 
    

    注意:在網站管理員工具有下的單詞「execOnReady」中的「E」紅色下劃線。

    回答

    2

    您的數據塊不包含有效的JSON-LD(application/ld+json)。

    而不是

    <script type='application/ld+json'> 
        execOnReady(function({{"@context":"http:\/\/schema.org","@type":"WebSite","url":"http:\/\/www.townsvillenerds.com\/","name":"Townsville Nerds - Ph 0402 807 890"}}) 
    </script> 
    

    應該

    <script type='application/ld+json'> 
        {"@context":"http:\/\/schema.org","@type":"WebSite","url":"http:\/\/www.townsvillenerds.com\/","name":"Townsville Nerds - Ph 0402 807 890"} 
    </script> 
    

    我猜你不需要逃避/,所以它可能是:

    <script type="application/ld+json"> 
        { 
        "@context": "http://schema.org", 
        "@type": "WebSite", 
        "url": "http://www.townsvillenerds.com/", 
        "name": "Townsville Nerds - Ph 0402 807 890" 
        } 
    </script> 
    
    相關問題