Mapping Schema to Fields
This topic contains 9 replies, has 3 voices, and was last updated by Will Hill 5 years, 2 months ago.
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket-
AuthorPosts
-
January 6, 2020 at 8:00 pm #524294
So I’ve created a Jobs CPT and used the support documents to add the “JobPosting” schema type to all of the job categories. However, it doesn’t map the fields to what the schema documentation requires. For example, the Job Type field (where an employer can select part time, full time, intern, etc.)doesn’t map the employmentType schema attribute. There are around 8 of these where we have the fields that line up, but they don’t seem to automatically translate to the schema. Is there a way to manually dictate what each field should line up to for the Schema?
January 6, 2020 at 8:45 pm #524312I will flag your question for the developers.
January 7, 2020 at 7:47 am #524389Hi Will,
Fields are dynamic and field names depends on site requirement. At the time it renders basic fields to schema.
There is already hook available to customize schema. Please provide site link & FTP credentials so i can provide PHP snippet to render jobPosting schema.
Regards,
KiranJanuary 7, 2020 at 5:36 pm #524517This reply has been marked as private.January 7, 2020 at 10:24 pm #524561This reply has been marked as private.January 7, 2020 at 11:37 pm #524573This reply has been marked as private.January 8, 2020 at 7:33 am #524596Hi Will,
Please check i have added PHP snippet to render JobPosting schema based on gd_job custom fields.
Kiran
January 8, 2020 at 10:51 pm #524711Kiran,
That looks good. Could you share what snippet you used and where so I can do that on my own for future schema adjustments?
January 9, 2020 at 6:57 am #524749Hi Will,
I have used following PHP snippet. You can also find it on your backend > Snippets > JobPosting Schema
/** * JobPosting Schema */ function gd_snippet_200108_job_posting_schema( $schema, $post ) { global $gd_post; if ( ! empty( $gd_post ) && ! empty( $gd_post->post_type ) && $gd_post->post_type == 'gd_job' ) { $schema['@type'] = 'JobPosting'; // datePosted $schema['datePosted'] = str_replace( ' ', 'T', date_i18n( 'Y-m-d H:i:s', strtotime( $post->post_date ) ) ); // hiringOrganization $hiringOrganization = array(); $hiringOrganization["@type"] = "Organization"; $hiringOrganization["name"] = ! empty( $gd_post->businessorganization_name ) ? $gd_post->businessorganization_name : 'n/a'; $hiringOrganization["sameAs"] = $gd_post->website; $schema['hiringOrganization'] = $hiringOrganization; // jobLocation $jobLocation = array(); $jobLocation["@type"] = "Place"; //$jobLocation["name"] = $schema['name']; $jobLocation["address"] = $schema['address']; if ( ! empty( $schema['telephone'] ) ) { $jobLocation["telephone"] = $schema['telephone']; } $schema['jobLocation'] = $jobLocation; // jobLocationType $schema['jobLocationType'] = 'TELECOMMUTE'; // title $schema['title'] = $schema['name']; // validThrough if ( ! empty( $gd_post->expire_date ) && geodir_strtolower( $gd_post->expire_date ) != 'never' && $gd_post->expire_date != '0000-00-00' ) { $schema['validThrough'] = str_replace( ' ', 'T', date_i18n( 'Y-m-d H:i:s', strtotime( $gd_post->expire_date ) ) ); } else { $schema['validThrough'] = str_replace( ' ', 'T', date_i18n( 'Y-m-d H:i:s', strtotime( '+30 day' ) ) ); } // baseSalary $baseSalary = array(); $baseSalary['@type'] = "MonetaryAmount"; $baseSalary['currency'] = "USD"; $baseSalary['value'] = array( "@type" => "QuantitativeValue", "value" => ( ! empty( $gd_post->enter_a_wagesalary_estimate ) ? $gd_post->enter_a_wagesalary_estimate : 'n/a' ), "unitText" => "YEAR" ); $schema['baseSalary'] = $baseSalary; // employmentType $schema['employmentType'] = ! empty( $gd_post->job_type ) ? str_replace( ' ', '_', geodir_strtoupper( $gd_post->job_type ) ) : 'OTHER'; } return $schema; } add_filter( 'geodir_details_schema', 'gd_snippet_200108_job_posting_schema', 20, 2 );
Kiran
January 9, 2020 at 4:03 pm #524864Kiran,
Perfect. Thank you. I’m hoping to make some slight adjustments to the way Event schema is mapped to adjust to some of our custom fields, and with this as a template I might be able to figure it out.
-
AuthorPosts
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket