web-dev-qa-db-ja.com

SEO META TAG og:説明と説明

私のサイトをGoogle検索でランク付けしようとしています。私は、この作業を行う方法について、文字通りウェブ全体を検索しました。検索すると、descriptionメタタグが使用されないことがわかります。ソースコードを見ると、og:descriptionとdescriptionの両方が使用されていますが、これにより問題が発生しますか?多くのチュートリアルが示唆するように、重複排除する必要がありますか?

 <meta name="description" content="ELDE Cosmetics creates natural, fun and minimalistic skin care products for all skin types. Free from fragrance, essential oils, parabens.">

    <meta name="keywords" content="Beauty, skincare, makeup, fragrance, perfume" />
  <link rel="canonical" href="https://eldecosmetics.com/">
  <meta name="viewport" content="width=device-width,initial-scale=1">



  <meta property="og:type" content="website">
  <meta property="og:title" content="ELDE Cosmetics — Natural &amp; Organic Skin Care">



  <meta property="og:description" content="ELDE Cosmetics creates natural, fun and minimalistic skin care products for all skin types. Free from fragrance, essential oils, parabens.">

  <meta property="og:url" content="https://eldecosmetics.com/">
  <meta property="og:site_name" content="ELDE">
10
vemund

失望して申し訳ありませんが、これら2つのタグは実際には(もしあれば)非常にわずかにSEOに影響します。サイトが他のサイトにリンクされている場合、主にページの短い説明を表示するために使用されます。 descriptionは(確実ではありません)が検索エンジンで(部分的に)使用される可能性がありますが、og:descriptionはFacebookなどのソーシャルメディアネットワークで使用できます。

編集:(有用なコンテンツとともに)両方を使用しても害はありません。

それらを組み合わせるには(スキーマとOGP) this および this SO投稿を参照してください。

14
MattDiMu