Показать страницуИстория страницыСсылки сюдаНаверх Эта страница только для чтения. Вы можете посмотреть её исходный текст, но не можете его изменить. Сообщите администратору, если считаете, что это неправильно. [[https://only-to-top.ru/blog/tools/2019-09-23-mikrorazmetka-sajta.html]] ====== Карточка товара ====== schema.org/Product <code> <div class="product" itemtype="https://schema.org/Product" itemscope> <meta itemprop="name" content="<?= $variant->getMetaTitle() ?>"> <meta itemprop="sku" content="<?= $product->getCode() ?>"> <meta itemprop="description" content="<?= $variant->getMetaDescription()?>"> <?php if ($imageUrl = $variant->getMainImageUrl()): ?> <link itemprop="image" href="<?= $imageUrl?>"> <?php endif; ?> <?php if ($price = $variant->InStock()): ?> <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope> <a itemprop="url" href="<?= $product->getUrl(true) ?>" style="display: none;"></a> <meta itemprop="sku" content="<?= $product->getCode() ?>"> <meta itemprop="priceCurrency" content="RUB"> <meta itemprop="availability" content="https://schema.org/InStock"> <meta itemprop="price" content="<?= floatval($price) ?>"> </div> <?php else: ?> <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope> <a itemprop="url" href="<?= $product->getUrl(true) ?>" style="display: none;"></a> <meta itemprop="sku" content="<?= $product->getCode() ?>"> <meta itemprop="priceCurrency" content="RUB"> <meta itemprop="availability" content="https://schema.org/OutOfStock"> </div> <?php endif; ?> </div> </code> seo.txt Последнее изменение: 2023/02/13 15:02 — 127.0.0.1