我正在尝试让我的网站在Google搜索上排名.我搜索了整个网络,文学上如何使这项工作.我看到,当我搜索时,它不使用描述元标记.当我查看我的源代码时,它使用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 & 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">
Run Code Online (Sandbox Code Playgroud) 我不喜欢文档头部的标签数量.这是一些元标记的示例.
<!--w3c-->
<title>Page Title</title>
<meta name="description" content="great description">
<!--schema.org-->
<meta itemprop="name" content="Page Title">
<meta itemprop="description" content="great description">
<!-- opengraph-->
<meta property="og:title" content="Page Title">
<meta property="og:description" content="great description">
Run Code Online (Sandbox Code Playgroud)
是否可以组合标签/属性来减少代码大小而不影响SEO?
例如,
<title itemprop="name">Page Title</title>
itemprop属性可以在任何地方使用,所以我很确定这很好,但据我所知,property ="og:*"属性必须与元标记一起使用.
那么以下标记是否可以接受?
<meta name="description" itemprop="description" property="og:description" content="great description">
Run Code Online (Sandbox Code Playgroud)
这将如何影响SEO?
非常感谢