複数の組織のメンバーであり、次のように、それらの組織へのリンクをWebサイトに表示したいクライアントのサイトを仕上げています。
クライアント企業は以下の誇り高いメンバーです:
組織1
組織2など.
私はこれまでこのような状況に実際に対処したことがなく、たぶん質問を適切にフレージングしていないだけかもしれませんが、何も見つかりません。いくつか質問があります。
rel
属性はありますか?例
サッカーチームのディレクトリ:-
<!-- Team One -->
<li class="team">
<div itemscope itemtype="http://schema.org/SportsTeam">
<a itemprop="url" href="http://www.example1.com">
<div itemprop="name">
<strong>Manchester United</strong>
</div>
</a>
<div itemprop="description">This is the description for Manchester United.</div>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">Old Trafford Stadium, Sir Matt Busby Way</span><br>
P.O. Box: <span itemprop="postOfficeBoxNumber">123</span><br>
<span itemprop="addressLocality">Manchester</span><br>
<span itemprop="addressRegion">Greater Manchester</span><br>
<span itemprop="postalCode">M16 0RA</span><br>
<span itemprop="addressCountry">United Kingdom</span><br>
</div>
</div>
</li>
<!-- Team Two -->
<li class="team">
<div itemscope itemtype="http://schema.org/SportsTeam">
<a itemprop="url" href="http://www.example2.com">
<div itemprop="name">
<strong>Arsenal</strong>
</div>
</a>
<div itemprop="description">This is the description for Arsenal.</div>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">Emirates Stadium, Hornsey Road</span><br>
P.O. Box: <span itemprop="postOfficeBoxNumber">123</span><br>
<span itemprop="addressLocality">London</span><br>
<span itemprop="addressRegion">North London</span><br>
<span itemprop="postalCode">N5 1BU</span><br>
<span itemprop="addressCountry">United Kingdom</span><br>
</div>
</div>
</li>
クライアント( →LocalBusiness
)は、組織のメンバー( →member
)( →Organization
)。
Microdataでは、構造は次のようになります。
<div itemscope itemtype="http://schema.org/LocalBusiness">
<!-- client company -->
<div itemprop="member" itemscope itemtype="http://schema.org/Organization"><!-- organization 1 --></div>
<div itemprop="member" itemscope itemtype="http://schema.org/Organization"><!-- organization 2 --></div>
</div>
検索エンジンmightは、この情報を使用してさまざまな処理を実行します。たとえば、検索結果の表示を強化します。 (スパムや嘘をついている場合を除き)何らかの方法で損害を与えると想定する理由はありません。
リンクの種類(rel
属性の値など)は、組織のWebサイトへのリンクにのみ使用できます。 external
( Webサイトのページを指していないすべてのリンクに対して を使用できます)を除いて、ここで使用できるリンクタイプは考えられません。 Microformat "group"プロポーザル があり、member
リンクタイプを使用しますが、HTML5では無効です。