schema.org属性でテンプレートを展開しようとしていますが、次の質問があります。どのプロパティでタイプEducationalOrganizationの営業時間を指定できますか?残念ながら、openingHoursプロパティはここでは使用できません。また、EducationalOrganizationのようなタイプはありません。ここで構造化データ(schema.org) - 教育組織向けオープニングリソース
は、私のコードの現在の状態です:
これが不可能な場合、私は にitemprop =「openingHours」プロパティを使用するには、この場合に使用するか、または別のworkarountがあることができますどのような種類の<div itemscope itemtype="http://schema.org/EducationalOrganization" class="ce_text address block">
<div class="text_container">
<p>
<span>
<strong itemprop="name"><?php echo $this->field('company')->value(); ?></strong><br>
</span>
<p itemscope itemtype="http://schema.org/PostalAddress" itemprop="address">
<span itemprop="streetAddress">
<?php echo $this->field('street')->value(); ?><br>
</span>
<span itemprop="postalCode">
<?php echo $this->field('zipcode')->value(); ?>
</span>
<span itemprop="addressLocality">
<?php echo $this->field('place')->value(); ?>
</span>
</p>
<p>
Aus dem Ausland: <span itemprop="telephone"><?php echo $this->field('phone_foreign')->value(); ?></span><br>
Fax: <span itemprop="telephone"><?php echo $this->field('fax')->value(); ?></span>
</p>
<p itemscope itemtype="??????"> <!-- What type can I use here? -->
<strong>Öffnungszeiten:</strong><br>
Montag bis Donnerstag: <meta itemprop="openingHours" content="Mo-Th 08:00-18:00"><?php echo $this->field('mothu')->value(); ?><br>
Freitag: <meta itemprop="openingHours" content="Fr 08:00-15:00"><?php echo $this->field('fri')->value(); ?>
</p> <!-- Öffnungszeiten Ende -->
</div>
</div>
?
UPDATE:
私はその間に、このソリューションを選択しました。それはGoogleによってきれいに読み出され、私達の会社の場合にはより意味があります。
<div itemscope itemtype="http://schema.org/Service">
<strong>Öffnungszeiten:</strong><br>
Montag bis Donnerstag: <?php echo $this->field('mothu')->value(); ?><br>
Freitag: <?php echo $this->field('fri')->value(); ?>
<div itemprop="hoursAvailable" itemscope itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Monday" />
<time itemprop="opens" content="08:00:00"></time>
<time itemprop="closes" content="18:00:00"></time>
</div>
<div itemprop="hoursAvailable" itemscope itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Tuesday" />
<time itemprop="opens" content="08:00:00"></time>
<time itemprop="closes" content="18:00:00"></time>
</div>
<div itemprop="hoursAvailable" itemscope itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Wednesday" />
<time itemprop="opens" content="08:00:00"></time>
<time itemprop="closes" content="18:00:00"></time>
</div>
<div itemprop="hoursAvailable" itemscope itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Thursday" />
<time itemprop="opens" content="08:00:00"></time>
<time itemprop="closes" content="18:00:00"></time>
</div>
<div itemprop="hoursAvailable" itemscope itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Friday" />
<time itemprop="opens" content="08:00:00"></time>
<time itemprop="closes" content="15:00:00"></time>
</div>
</div>
開封時間は正確に何ですか?オフィスに行くには?電話の場合は? – unor
@unor営業時間は、電話サービスと、受講者が来て頂く機会がある営業時間です。 – Codehan25
@ Codehan25 EducationalOrganizationプロパティが組織に適用されることに注意してください。しかし、プロパティhttp://schema.org/Serviceは、組織が提供するサービスに使用されます。これらは、適用するさまざまな方法です。 – nikant25