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>
<amp-img
URL,因爲它被用來提取僅
<img
URL。 我該如何解決這個問題?