HTML标题和元描述与Schema.org标题和描述

时间:2018-11-14 08:20:27

标签: html5 schema.org json-ld structured-data

是否应将输入为description(Schema.org属性)的文本设置为HTML页面的meta-description

请考虑以下内容:

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "JobPosting",
  "baseSalary": "100000",
  "jobBenefits": "Medical, Life, Dental",
  "datePosted": "2011-10-31",
  "description": "Description: ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.",
  "educationRequirements": "Bachelor's Degree in Computer Science, Information Systems or related fields of study.",
  "employmentType": "Full-time",
  "experienceRequirements": "Minumum 3 years experience as a software engineer",
  "incentiveCompensation": "Performance-based annual bonus plan, project-completion bonuses",
  "industry": "Computer Software",
  "jobLocation": {
    "@type": "Place",
    "address": {
      "@type": "PostalAddress",
      "addressLocality": "Kirkland",
      "addressRegion": "WA"
    }
  },
  "occupationalCategory": "15-1132.00 Software Developers, Application",
  "qualifications": "Ability to work in a team environment with members of varying skill levels. Highly motivated. Learns quickly.",
  "responsibilities": "Design and write specifications for tools for in-house customers Build tools according to specifications",
  "salaryCurrency": "USD",
  "skills": "Web application development using Java/J2EE Web application development using Python or familiarity with dynamic programming languages",
  "specialCommitments": "VeteranCommit",
  "title": "Software Engineer",
  "workHours": "40 hours per week"
}
</script>

是否应将输入的文本作为属性description的内容(“ ABC Company Inc.寻求专职的中级软件工程师来开发内部工具”。)设置为HTML页面meta部分中的description-head标签,如下所示:

<meta name="description" content="ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.">

以同样的方式,将Schema.org属性title的内容设置为HTML页面的title元素(在head部分中)如下所示:

<title>Software Engineer</title>

0 个答案:

没有答案