2012-10-09 2 views
0

구조화 된 데이터를 사용하여 웹 사이트에 Google 검색 결과 카테고리가 포함되도록 노력하고 있습니다. 당신은 내가이 예에서 무엇을 의미하는지 볼 수 있습니다SEO : Google 검색시 카테고리를 표시하기 위해 구조화 된 데이터 사용

http://tinyurl.com/95lryvn

을이 범주에 '인체 공학 의자'를 보여주는 예에서.

나는 다음과 같은 사용하여이를 복제하는 노력했습니다 :

빵 부스러기

<div itemprop="breadcrumb"> 
    <a href="/">Home</a> &gt; 
    <a href="/sets/AlaraReborn/index.html" itemprop="isPartOf">Alara Reborn</a> &gt; 
    <a href="ArdentPlea.html">Ardent Plea</a> 
</div> 

schema.org의 isPartOf에는 itemprop (위의 코드 샘플도 볼 수),하지만 여전히 I 카테고리를 표시 할 수 없습니다.

누구나 googles structured data tester을 통해 테스트 할 때 카테고리를 표시 할 짧은 샘플을 게시 할 수 있습니까?

답변

1

왜 당신이 "overstock.com"준 RDFa를, 결국, 예를 사용하지 않는, 그들은 ... RDFa를 여기 해당 페이지에서 발췌 한 것입니다 사용하는

<ul itemprop="breadcrumb" class="horizontal-list bcrumbs"> 
    <li typeof="v:Breadcrumb" class="bcrumb-1"> 
    <a property="v:title" rel="v:url" title="Online Shopping" href="http://www.overstock.com/">Online Shopping</a> 
    </li> 
    <li typeof="v:Breadcrumb" class="bcrumb-2"> 
    <span class="bcrumb-arrow"></span> 
    <a property="v:title" rel="v:url" title="Office Supplies" href="http://www.overstock.com/Office-Supplies/22/store.html"> 
    Office Supplies</a> 
    </li> 

    <li typeof="v:Breadcrumb" class="bcrumb-3"> 
    <span class="bcrumb-arrow"></span> 
    <a property="v:title" rel="v:url" title="Office Furniture" href="http://www.overstock.com/Office-Supplies/Office-Furniture/310/dept.html"> 
     Office Furniture</a> 
    </li> 


    <li typeof="v:Breadcrumb" class="bcrumb-4"> 
    <span class="bcrumb-arrow"></span> 
     <a property="v:title" rel="v:url" title="Office Chairs &amp; Accessories" href="http://www.overstock.com/Office-Supplies/Office-Chairs-Accessories/3637/cat.html"> 
     Office Chairs &amp; Accessories</a> 
    </li> 


    <li typeof="v:Breadcrumb" class="bcrumb-5"> 
     <span class="bcrumb-arrow"></span> 
     <a property="v:title" rel="v:url" title="Ergonomic Chairs" href="http://www.overstock.com/Office-Supplies/Ergonomic-Chairs/22529/subcat.html"> 
     Ergonomic Chairs</a> 
     <i class="last-child"></i> 
    </li> 

`

그리고 여기에 모든 것을 설명 할 수 있지만 난 강력하게 내가 구글에 의해 주어진 설명이 일치하지 수 있다고 생각합니다.

따라서 이러한 설명 (아래 링크)을 수행하지 않은 경우이를 수행하는 것이 좋습니다. 이것이 당신의 문제를 해결할 수 있기를 바랍니다.

관련 문제