ฉันมีปัญหาในการใช้เกร็ดเล็กเกร็ดน้อยในเกล็ดขนมปังจาก schema.org เมื่อฉันสร้าง breadcrumb ของฉันโดยใช้เอกสารและเรียกใช้ผ่านเครื่องมือทดสอบ Google Rich Snippetจะทำการระบุ breadcrumb แต่ไม่แสดงในภาพตัวอย่าง
<!DOCTYPE html>
<html>
<head>
<title>My Test Page</title>
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<strong>You are here: </strong>
<div itemprop="breadcrumb">
<a title="Home" href="/">Home</a> >
<a title="Test Pages" href="/Test-Pages/">Test Pages</a> >
</div>
</body>
</html>
หากฉันเปลี่ยนเป็นใช้ตัวอย่างข้อมูลจาก data-vocabulary.org ตัวอย่างข้อมูลสมบูรณ์จะแสดงอย่างถูกต้องในหน้าตัวอย่าง
<!DOCTYPE html>
<html>
<head>
<title>My Test Page</title>
</head>
<body>
<strong>You are here: </strong>
<ol itemprop="breadcrumb">
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="/" itemprop="url">
<span itemprop="title">Home</span>
</a>
</li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="/Test-Pages/" itemprop="url">
<span itemprop="title">Test Pages</span>
</a>
</li>
</ol>
</body>
</html>
ฉันต้องการแสดง breadcrumb ในผลลัพธ์การค้นหาแทน URL ไปยังหน้า
เนื่องจาก Schema.org เป็นวิธีที่แนะนำให้ใช้ตัวอย่างรวย ๆ ฉันจะใช้วิธีนี้ แต่เนื่องจาก breadcrumb ไม่แสดงในตัวอย่างผลลัพธ์การค้นหาโดยใช้วิธีนี้ฉันไม่มั่นใจว่ามันทำงานได้อย่างถูกต้อง
ฉันกำลังทำสิ่งผิดปกติในมาร์กอัพสำหรับตัวอย่างของ Schema.org หรือไม่