schema.org에서 사이트 이동 경로가 풍부한 스 니펫을 구현하는 데 문제가 있습니다. 문서를 사용하여 이동 경로를 구성하고 Google Rich Snippet 테스트 도구 를 통해 실행 하면 이동 경로가 식별되지만 미리보기에는 표시되지 않습니다.
<!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>
사이트 이동 경로가 페이지의 URL이 아닌 검색 결과에 표시되기를 원합니다.
Schema.org가 리치 스 니펫을 사용하는 데 권장되는 방법이므로이 방법을 사용하여 검색 결과의 미리보기에 사이트 이동 경로가 표시되지 않으므로이 방법을 사용하는 것이 좋습니다.
Schema.org 예제의 마크 업에 문제가 있습니까?