【SEO】【構造化データ】Product(複数)
Product
以下の実装をしたケースの紹介です。
https://developers.google.com/search/docs/data-types/product?hl=ja
今回のページの場合は売り物ではなく全国の車のカタログのため推奨フィールドは空が多いです。
ただこのようなケースでも必須フィールドを埋めれば適用することができます。
コード
テンプレート側にベタ書きでも良かったのですがテンプレートはなるべくスッキリさせたいのと元々裏側でforeachしていたのでそこに入れ込みたく、値を変数に入れてテンプレート側で表示するようにしました。
今回はこちらのページに実装した例です。
structuredData.php
foreach($cars as $key=>$car){
$structuredData[] = array(
"@context" => "https://schema.org",
"@type" => "Product",
"name" => $car['Name'],
"image" => $car['ImagePath'],
"url" => $car['PageUrl'],
"brand" => array(
"@type" => "Brand",
"name" => $car['BrandName']
),
"offers" => array(
"@type" => "Offer",
"price" => $car['Price'],
"priceCurrency" => "JPY"
),
);
}
$structuredData = json_encode($structuredData);
structuredData.template
<script type="application/ld+json">
<?php
if(isset($structuredData) && !empty($structuredData)){
if($structuredData != '[]'){
echo $structuredData;
}
}
?>
</script>
テストツールで見るとこんな感じです。
Author And Source
この問題について(【SEO】【構造化データ】Product(複数)), 我々は、より多くの情報をここで見つけました https://qiita.com/bubbles/items/09d3d021dae4624e3964著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .