LoginSignup
0
0

More than 1 year has passed since last update.

ブログまたは記事ページに貼り付ける構造化データのJson記述方法の備忘録

Posted at

記事ページの構造化データコード

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BlogPosting",
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://abcd.com"
  },
  "headline": "見出しなどを記載(seoで自社サイトの検索結果の表示範囲を限りなく広げる方法とは?実践しただけでクリック率120%UPした事例などを紹介)",
  "description": "自社サイトの検索結果に質疑応答ページが追加されてクリック率 UPした件",
  "image": "https://thumnail-img.com",  
  "author": {
    "@type": "Organization",
    "name": "abcdcorporation",
    "url": "https://abcdcorporation.com",
    "sameAs": "https://twitter.com/abcdcorporation",
    "honorificPrefix": "デザイナー",
    "jobTitle": "代表取締役"
  },  
  "publisher": {
    "@type": "Organization",
    "name": "abcdcorporation",
    "logo": {
      "@type": "ImageObject",
      "url": "https://sunnycorporation-logo-Icon-120x120.png"
    }
  },
  "datePublished": "2022-07-06",
  "dateModified": "2022-07-18"
}
</script>

※type: "BlogPosting", ⇨こちらは、NewsArticleでもOK
※authorが2人いた場合は2名分書きましょうとGoogleが推奨。書き方は以下配列で書きます

"author": [{
    "@type": "Person",
    "name": "Jane Doe",
    "url": "http://example.com/profile/janedoe123"
  },{
    "@type": "Person",
    "name": "John Doe",
    "url": "http://example.com/profile/johndoe123"
}]

※"sameAs"はsnsのIDやwikiなど記載(異なる媒体で顔となっているプロフィールがあれば記載)

以上です。
間違っている、ここはこうした方がいいかも?等々ございましたらご指摘いただけますと幸いです。
最後まで見ていただいた方、ありがとうございました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0