Job location data coming out wrong in JSON schema
-
I’m using WP All Import and the “Import Listings into WP Job Manager” plugin to bring jobs from an RSS feed into WP Job Manager. When I map only city and state it all looks and works correct on the site, but as soon as I add the postalCode it breaks the JSON object and I get this:
“jobLocation”:{
“@type”:”Place”,
“address”:”Denver, CO 80012″
}Rather than this:
“jobLocation”:{
“@type”:”Place”,
“address”: {
“@type”: “PostalAddress”,
“addressLocality”: “Denver”,
“addressRegion”: “CO”,
“postalCode”: “80012”,
},Google is, consequently, reporting that my jobs are missing the zipcode if I don’t try to add it, and that they’re missing the entire address if I do try to add it.
Is there a different way to map or import the data into the job so that the city/state/zip data are properly split up in the JSON object?
The page I need help with: [log in to see the link]
- The topic ‘Job location data coming out wrong in JSON schema’ is closed to new replies.