DEV Community

kumamon
kumamon

Posted on

2 2

構造化データ: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)

AWS GenAI LIVE image

Real challenges. Real solutions. Real talk.

From technical discussions to philosophical debates, AWS and AWS Partners examine the impact and evolution of gen AI.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay