নিম্নলিখিত হিসাবে প্রত্যাশিত হিসাবে গুগল স্ট্রাকচার্ড ডেটা পরীক্ষার সরঞ্জাম মাধ্যমে সঞ্চালিত হয় :
<div>
<div itemprop="publisher" itemscope id="organization-example" itemtype="https://schema.org/Organization">
<a itemprop="url" href="https://example.com">
<img itemprop="image logo" src="https://example.com/images/logo.png" alt="LOGO">
<span itemprop="name">EXAMPLE</span>
<span itemprop="description">This is an EXAMPLE</span>
</a>
</div>
</div>
<div itemscope itemtype="https://schema.org/WebPage" itemref="organization-example">
</div>
তবে যখন আমি BlogPosting
এটি ব্যবহার করার চেষ্টা করি তখন logo
সম্পত্তিটি ভেঙে যায় :
<div>
<div itemprop="publisher" itemscope id="organization-example" itemtype="https://schema.org/Organization">
<a itemprop="url" href="https://example.com">
<img itemprop="image logo" src="https://example.com/images/logo.png" alt="LOGO">
<span itemprop="name">EXAMPLE</span>
<span itemprop="description">This is an EXAMPLE</span>
</a>
</div>
</div>
<article
itemscope
itemtype="https://schema.org/BlogPosting"
itemref="organization-example"
>
</article>
ত্রুটি সহ:
https://example.com/images/logo.png
(বৈশিষ্ট্যযুক্ত লোগো.আইটিএমটাইপের একটি অবৈধ মান রয়েছে))
কেন কেউ ব্যাখ্যা করতে পারেন? এবং আমি এটি ঠিক করতে কি পদক্ষেপ নিতে পারি?
itemprop
সেইভাবেই করছে .. একই লাইনে itemtype
।
itemprop
হিসাবে একই লাইনে ব্যবহার করা এড়ানো উচিতitemtype
, কারণ প্রকাশক সংস্থা, ওয়েবপেজ এবং ব্লগপোস্টিংয়ের সন্তান। ভাল ব্যবহার করার জন্য<body itemscope itemtype="https://schema.org/Organization">
তারপর<article itemscope itemtype="https://schema.org/BlogPosting">
<span itemprop="publisher">
ইত্যাদি ... আছে, লোগো একাধিক বার পুনরাবৃত্তি বিশেষ করে একটি ব্লগ পোস্টে প্রয়োজন হবে না।