DEV Community

kumamon
kumamon

Posted on

構造化データ:articleテンプレ

<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "<?=home_url().$_SERVER["REQUEST_URI"]; ?>"
},
"headline": "<?php echo meta_set('title'); ?>",
"description": "<?php echo meta_set('description'); ?>",
"image": "★★アイキャッチ★★",  
"author": {
"@type": "Organization",
"name": "★★サイト名★★"
},  
"publisher": {
"@type": "Organization",
"name": "★★サイト名★★",
"logo": {
"@type": "ImageObject",
"url": "★★アイコン★★",
"width": 60,
"height": 60
}
},
"datePublished": "<?php echo get_the_modified_date(); ?>",
"dateModified": "<?php echo get_the_modified_date(); ?>"
}
</script>

Top comments (0)