English 中文(简体)
Breadcrumb microdata help
原标题:

I m trying to help Google generate appropriate breadcrumb details for my website. I am currently using this as the breadcrumb:

<div id="breadcrumb">
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
    <a href="http://www.radonsystems.net" class="crumb" rel="up" itemprop="url">
        <span itemprop="title">Home</span>
    </a>
    <span class="arrow">
        <span>&raquo;</span>
    </span>
</span>
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
    <a href="http://www.radonsystems.net/business/profile.2" class="crumb" rel="up" itemprop="url">
        <span itemprop="title">Business Profile</span>
    </a>
</span>
</div>

However, this isn t helping Google at all, even the testing tool does not generate the breadrumb link, though it does see the microdata and correctly identifies it as breadcrumb microdata.

Any ideas?

最佳回答

What I did was to add a new column, in which numbers could be entered as format: 1,3,4. Then, I retrieved it from the database, exploded it into an array, and for each number, I d retrieve information about that link id: url, text, then output it.

问题回答

Instead of using the microdata schemas at data-vocabulary.org, I would use the newer ones at http://schema.org which is the joint project by Google, Yahoo and Microsoft. It has a wider range of schemas to be more expressive with your data modeling.

In particular, the webpage schema is what you want for defined breadcrumb microdata. http://www.schema.org/WebPage

If you want to list your pages, you need to create a version that contains enough substance that should be sought.





相关问题
(sharp) # sign in query string and SEO

I have a site Index.html and there is a categories menu generated from database. Menu consists of HTML anchors, but href attribute is always something like "Index.html#cat=xyz" because content of each ...

ListBox Value containing links

hi I am currently working on improving the SEO on a website containing dropdown list menu. currently when you select options and then submit a javascript is redirecting you to the next page I heard ...

Website Sitemaps and <priority>, is it working?

My "Privacy Policy" page is seen more important by Google than other really more important pages on my website. I m currently creating a script to generate a sitemap, should I bother with the ...

Will an incomplete google sitemap hurt my search ranking?

If I submit a sitemap.xml which does not contain all of the pages of my site, will this affect my search ranking? For example: If my sitemap only contained pages that had been created in the last ...

Anchored AJAX and SEO workaround?

You all know how to build AJAX sites with those 300ms trigger for checking anchors (hash links) in URL and then loading proper page with AJAX. But, these anchor links are nothing to search engines =( ...

热门标签