Wordpress 如何为国家搜索编码schema.org?

Wordpress 如何为国家搜索编码schema.org?,wordpress,schema.org,Wordpress,Schema.org,我的客户希望他们的公司名称(遍布美国)能根据用户输入谷歌的邮政编码在谷歌搜索中出现。我想它一定是schema.org..我找到了一个类似的网站,这是我找到的代码源: <!-- Top Bar --> <div id="top_toolbar" class="clearfix"> <div class="container"> <div class="breadcrumbContai

我的客户希望他们的公司名称(遍布美国)能根据用户输入谷歌的邮政编码在谷歌搜索中出现。我想它一定是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>

如果我在谷歌搜索“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>