我的客户希望他们的公司名称(在美国境内运行)根据用户在谷歌中输入的邮政编码进行goolge搜索。我认为它必须是schema.org ..我找到了一个类似的网站,这是我找到的代码源:
<!-- Top Bar -->
<div id="top_toolbar" class="clearfix">
<div class="container">
<div class="breadcrumbContainer">
<div class="breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <a href="/" itemprop="url"><span itemprop="title">TITLE HERE</span> </a> </div>
<div class="breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <span> <a href="/TITLEHERE" itemprop="url"><span itemprop="title">TITLEHERE </span> </a> </span></div>
<div class="breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <span> <a href="/Something/In" itemprop="url"><span itemprop="title">In </span> </a> </span></div>
</div>
</div>
</div>
如果我要谷歌搜索“Something in 49117”这就是源代码:
<div id="top_toolbar" class="clearfix">
<div class="container">
<div class="breadcrumbContainer">
<div class="breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <a href="/" itemprop="url"><span itemprop="title">TITLEHERE</span> </a> </div>
<div class="breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <span> <a href="/TITLEHERE" itemprop="url"><span itemprop="title">TITLEHERE </span> </a> </span></div>
<div class="breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <span> <a href="/TITLEHERE/In" itemprop="url"><span itemprop="title">In </span> </a> </span></div>
<div class="breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <span> <a href="/AutoTransport/In/49117" itemprop="url"><span itemprop="title">49117 </span> </a> </span></div>
<div class="breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <a href="/" itemprop="url"><span itemprop="title">Instant Quote</span> </a> </div>
</div>