简体   繁体   English

实施Google职位发布

[英]Implementation of Google Job Posting

I have read through this article: https://developers.google.com/search/docs/data-types/job-posting#JobPosting-definition and found where the Required Properties are that I will need to add to a job posting. 我已经阅读了这篇文章: https : //developers.google.com/search/docs/data-types/job-posting#JobPosting-definition,并找到了我需要添加到职位发布中的必填属性。 I'm not sure how to actually do this. 我不确定如何实际执行此操作。 I saw mention of it being done with JSON but I am unfamiliar with it. 我看到提到它是用JSON完成的,但我并不熟悉。 Is there a simple way I can use html to add these properties to a job post, such as one that would appear in a blog post of a Wordpress site? 有没有一种简单的方法可以使用html将这些属性添加到工作职位,例如出现在Wordpress网站的博客工作中的属性?

Is there a simple way I can use html to add these properties to a job post, such as one that would appear in a blog post of a Wordpress site? 有没有一种简单的方法可以使用html将这些属性添加到工作职位,例如出现在Wordpress网站的博客工作中的属性?

No. 没有。

HTML is a document format, it isn't well suited for providing data with the level of structure demanded by this type of problem. HTML是一种文档格式,它不适合提供具有此类问题所需的结构级别的数据。

I saw mention of it being done with JSON but I am unfamiliar with it. 我看到提到它是用JSON完成的,但我并不熟悉。

That's the format that the API you want to use expects data to be provided in (it is also the format that the vast majority of web services use). 这就是您希望使用的API期望提供数据的格式(这也是绝大多数 Web服务使用的格式)。 You need to get familiar with it. 您需要熟悉它。

Read the website and the specification , and find a JSON encoding library for whatever programming language you are using to connect to the Job Posting API (eg the JSON object for JavaScript ). 阅读网站规范 ,并找到用于连接到Job Posting API的任何编程语言的JSON编码库(例如JavaScriptJSON对象 )。

Thank you for your response Quentin. 谢谢您对昆汀的回复。 Unfortunately the client needed something ASAP so I didn't have the time to learn JSON. 不幸的是,客户需要尽快准备一些东西,所以我没有时间学习JSON。 I did however find a WP plugin that did the trick. 但是,我确实找到了可以解决问题的WP插件。 It sis called WP Job Management: https://wordpress.org/plugins/wp-job-manager/ . 它的名称为WP Job Management:WP Job Management: https : //wordpress.org/plugins/wp-job-manager/

Here I implemented for one of my client. 在这里,我为我的一位客户实施。

They were running jobs portal website. 他们正在运行求职门户网站。 so i have done job posting schema using json_ld. 所以我已经使用json_ld完成了工作发布架构。 here is the code i have used inside my page 这是我在页面内使用的代码

<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>

Here is the one of site that implemented good Scheme Refer : https://allgovernmentjobs.in/ . 这是实施良好计划的站点之一,请参阅: https : //allgovernmentjobs.in/ there you can find the job posting schema. 在这里您可以找到职位发布模式。

you can check this url : https://allgovernmentjobs.in/latest-government-jobs into the google structural Data testing Tool : https://search.google.com/structured-data/testing-tool/u/0/ and fetch the url. 您可以将以下网址检查: https : //allgovernmentjobs.in/latest-government-jobs进入google结构数据测试工具: https : //search.google.com/structured-data/testing-tool/u/0/获取网址。 You will get the idea about how the code as implemented and it helps for the better results in google search 您将了解有关代码如何实现的想法,它有助于在Google搜索中获得更好的结果

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 从Google网站将表单发布到外部URL - Posting A Form To An External URL From A Google Site 将坐标从 Google Maps API 发布到数据库 - Posting Coordinates to Database from Google Maps API Google Analytics(分析)实施共享点2013 - Google Analytics Implementation Sharepoint 2013 使用JavaScript PHP jQuery将网页中的数据发布到Google表格 - Posting data from webpage using JavaScript PHP jQuery to Google Sheet 自定义HTML表单发布到Google工作表中的不同工作表 - Custom HTML Form posting to different sheets in google sheets Google Analytics Evant跟踪代码实施 - Google Analytics Evant Tracking Code Implementation Google Chart API实现显示空白页 - Google Chart API implementation displaying blank page Google将带有地址表单的JavaScript实现映射到Geocoder - Google maps javascript implementation with form post of address to geocoder Google dataLayer实施-dataLayer.push-如何将其添加到页面? - Google dataLayer Implementation - dataLayer.push - How to add it to the page? 将HTML页面发布到OneNote REST API时,不显示带有编码路径的Google静态地图 - Google static maps with encoded paths don't show when posting HTML page to OneNote REST API
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM