1

在Blogger中,我正在使我的網站功放得到支持,爲此,在我的文章中,我更改了所有<img to <amp-img。 但在結構化數據我用下面的代碼:有條件的標籤獲取AMP圖像url

<div class='none' itemprop='image' itemscope='itemscope' itemtype='https://schema.org/ImageObject'> 
 
     <b:if cond='data:post.firstImageUrl'> 
 
     <amp-img expr:src='data:post.firstImageUrl' itemprop='image'/> 
 
     <meta expr:content='data:post.firstImageUrl' itemprop='url'/> 
 
     </b:if> 
 
     <meta content='800' itemprop='width'/> <!--Images should be at least 696 pixels wide.--> 
 
     <meta content='800' itemprop='height'/> 
 
    </div>
每當我檢查這個工具在結構化數據測試Tool.Above代碼不能提取 <amp-img URL,因爲它被用來提取僅 <img URL。 我該如何解決這個問題?

回答

1

在許多論壇上搜索很多後,我發現這個解決方案對我的問題。使用後<amp-img與從amp guideline NoScript。

<amp-img src="images/sunset.jpg" 
 
    width="264" 
 
    height="195"> 
 
    <noscript> 
 
    <img src="images/sunset.jpg" width="264" height="195" /> 
 
    </noscript> 
 
</amp-img>

這可你的形象一版本二是放大器和其他同時是非放大器。

相關問題